2
如何显式实例化模板函数?
我有一个带有一个参数的模板函数。我必须实例化该函数而不调用该函数,这意味着我必须实例化。 我有这个功能: template <class T> int function_name(T a) {} 我实例化了这样的功能: template int function_name<int>(int); 但是我遇到了以下错误: error: expected primary-expression before 'template' error: expected `;' before 'template'