标签: c++ templates parameters typedef
我知道我可以做功能模板template<int N> void f () {}。
template<int N> void f () {}
但是template<std::size_t N> void f() {}呢?
template<std::size_t N> void f() {}
答案 0 :(得分:3)
typedef只是给定类型的别名。所以整数类型的typedef本身就是一个整数类型。并且类型不会比std::size_t更加完整。
typedef
std::size_t