为什么这不起作用?
#include <vector> struct A { template <typename T> void f(const std::vector<T> &) {} }; int main() { A a; a.f({ 1,2,3 }); }
解决方法
您可以初始化std :: vector< T>列表初始化.但是,您不能使用std :: vector< T>推断出模板参数T.在参数列表中并传递函数不是std :: vector< T>.例如,这有效:
#include <vector> template <typename T> struct A { void f(const std::vector<T> &) {} }; int main() { A<int> a; a.f({ 1,3 }); }