我确信(直到我刚刚尝试过它)可以用数组样式表示法实例化一个关联容器。
例如,
std::set< int > _set = { 2, 3, 5 };
情况并非如此,但我想知道是否还有其他方法在构造函数中批量初始化容器?
答案 0 :(得分:2)
您可以使用Boost.Assign。
std::set< int > _set = boost::assign::list_of(2)(3)(5);
答案 1 :(得分:0)
你可以这样做:
const int x[] = { 2, 3, 5 };
std::set<int> _set(&x[0], &x[sizeof(x)/sizeof(x[0])]);
<!/ P>