Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道我可以做功能模板template<int N> void f () {}。
template<int N> void f () {}
但是呢template<std::size_t N> void f() {}?
template<std::size_t N> void f() {}
Atypedef只是给定类型的别名。所以任何typedef一个整数类型本身就是一个整数类型。并且类型不会比std::size_t.
typedef
std::size_t