众所周知,像这样初始化int数组是正常的:

int intAry[] = {7, 8, 9};


因此,我想知道,如何初始化std :: vector in the same way数组(仅在初始列表中):

typedef std::vector<int> type;
type vecAry[] = {vec1, vec2, vec3};


我知道将代码编写为合法是合法的,现在我的问题是如何在一行代码中初始化vecAry:

type vec1;
type vec2;
type vec3;
type vecAry = {vec1, vec2, vec3};

最佳答案

在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)};

09-10 04:57
查看更多