构造关联容器

发布于 2024-09-28 07:03:39 字数 165 浏览 6 评论 0原文

我确信(直到我刚才尝试过)可以用数组样式表示法实例化关联容器。

例如,

std::set< int > _set = { 2, 3, 5 };

情况并非如此,但我想知道是否有其他方法可以像这样在构造函数中批量初始化容器?

I was convinced (until I just tried it a moment ago) that it was possible to instantiate an associative container with array style notation.

For example,

std::set< int > _set = { 2, 3, 5 };

This isn't the case but I am wondering if there is any other way of bulk initialising a container in the constructor like this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

思念满溢 2024-10-05 07:03:39

您可以使用 Boost.Assign

std::set< int > _set = boost::assign::list_of(2)(3)(5);

You can use Boost.Assign.

std::set< int > _set = boost::assign::list_of(2)(3)(5);
秋凉 2024-10-05 07:03:39

你可以这样做:

const int x[] = { 2, 3, 5 };
std::set<int> _set(&x[0], &x[sizeof(x)/sizeof(x[0])]);

You could do:

const int x[] = { 2, 3, 5 };
std::set<int> _set(&x[0], &x[sizeof(x)/sizeof(x[0])]);

!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文