众所周知,像这样初始化int
数组是正常的:
int intAry[] = {7, 8, 9};
所以,我想知道,如何初始化std :: vector in the same way
数组(仅在初始列表中):
typedef std::vector<int> type;
type vecAry[] = {vec1, vec2, vec3};
我知道将代码编写为fllows是合法的,现在我的问题是如何在一行代码中初始化vecAry:
type vec1;
type vec2;
type vec3;
type vecAry = {vec1, vec2, vec3};
答案 0 :(得分:4)
在C ++ 11中,
type vecAry[] {{},{},{}};
或者如果你想要非空载体
type vecAry[] {{1,2,3},{4,5,6},{7,8,9}};
如果您遇到过去,可以使用空向量初始化它:
type vecAry[] = {type(), type(), type()};
但你不能用任意值初始化它,而没有像Boost Assignment library那样的帮助器:
type vecAry[] = {list_of(1)(2)(3), list_of(4)(5)(6), list_of(7)(8)(9)};