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 <class T> class A { };
当我如何使用参数时T = int(int)?这个代码我以前从未见过,我在哪里可以找到一些关于它的网页?
T = int(int)
int(int)是一个函数类型。它是一个函数的类型,它接受一个int并返回一个int.
int(int)
int