实例化一个class模板的方法模板

Instantiate a method template of a class template

如何显式实例化以下代码段的方法 f

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

使用这个语法:

template void A<0>::f<int>(int);

显然用 0int 替换您想要实例化的内容。