我们可以使用以下语法来初始化 vector 。

// assume that UserType has a default constructor
vector<UserType> vecCollections;

现在,如果 UserType 不为 UserType 提供默认构造函数,而只提供如下构造函数:
explicit UserType::UserType(int i) { ... }.

我应该如何使用 vector 构造函数调用这个显式元素初始值设定项?

最佳答案

vector<UserType> vecCollections(10, UserType(2));

关于c++ - 如何使用显式元素初始值设定项初始化 vector ?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5291291/

10-11 03:03