标签: templates c++11 instantiation
如何明确地实例化以下代码段的方法f?
f
template <int x> class A { public: template <typename T> inline void f(T y) { y = x; } };
答案 0 :(得分:2)
使用以下语法:
MainApp
显然将template void A<0>::f<int>(int); 和0替换为您想要实例化的内容。
template void A<0>::f<int>(int);
0