Can I avoid an ambiguity, when I declare a fixed length vector in class?

杀马特。学长 韩版系。学妹 提交于 2019-12-02 04:13:33

An in-class initialiser has to use braces or the equals sign; so this could be

std::vector<int> v = std::vector<int>(2);

or

std::vector<int> v {0,0};  // Careful! not {2}

Alternatively, you could use old-school initialisation in the constructor(s):

A() : v(2) {}

You can safely use this syntax:

std::vector<int> v = std::vector<int>(2);

Alternatively, use brace initialization, but you must be careful: the std::initializer_list<int> constructor will be picked, so to initialize a vector with two value- (therefore zero-) initialized ints you need

std::vector<int> v{0, 0};
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!