实例化类模板的方法模板

时间:2015-12-11 11:12:04

标签: templates c++11 instantiation

如何明确地实例化以下代码段的方法f

template <int x> class A
{
public:
   template <typename T> inline void f(T y) { y = x; }
};

1 个答案:

答案 0 :(得分:2)

使用以下语法:

MainApp

显然将template void A<0>::f<int>(int); 0替换为您想要实例化的内容。