在这种情况下,您希望使用单个参数实例化模板函数而不调用它。显式实例化涉及手动创建模板的实例而不使用其函数调用。
您指定了以下模板函数:
template <class T> int function_name(T a) {}
而您尝试按如下方式实例化该函数:
template int function_name<int>(int);
导致以下错误:
error: expected primary-expression before 'template' error: expected `;` before 'template'
正确的做法显式实例化该函数的方法如下:
template <typename T> void func(T param) {} // definition template void func<int>(int param); // explicit instantiation.
与模板实例化相反,模板专业化涉及为特定模板参数类型定义特定实现。要专门化 int 参数的 func 模板,您可以使用以下语法:
template <typename T> void func(T param) {} // definition template <> void func<int>(int param) {} // specialization
注意专门化语法中模板后面的尖括号。
以上是如何在 C 中显式实例化模板函数?的详细内容。更多信息请关注PHP中文网其他相关文章!