构造关联容器
我确信(直到我刚才尝试过)可以用数组样式表示法实例化关联容器。
例如,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Boost.Assign。
You can use Boost.Assign.
你可以这样做:
!
You could do:
!