// // Created by light on 19-11-3. // #include using namespace std; // 不可以对alias template做偏特化或全特化 template using Vec=vector>; // alias template using新用法 //# define Vec template vector> // 使用宏不行 int main() { Vec col; // 如果使用宏上述会被替换为template vector> error 不是我们想要的 // typedef vector> Vec; // typedef也无法做到,没法指定模板参数 return 0; }