我想初始化一个vector
. list<int>
我使用fill
了函数,但我的编译器显示错误。请在这个方向上帮助我。
std::vector<std::list<int>> neighbors(NRecords);
std::fill(neighbors.begin,neighbors.end,&std::vector<int>(NNeighbors)); // ERROR
错误:错误 2 错误 C3867:'std::vector<_Ty>::begin':函数调用缺少参数列表;使用 '&std::vector<_Ty>::begin' 创建指向成员的指针 ...