模板函数内的模板成员函数调用
在给定的代码中,尝试在模板函数 g 内调用模板成员函数 f因编译错误而失败:
<code class="cpp">template<class X> struct A { template<int I> void f() {} }; template<class T> void g() { A<T> a; a.f<3>(); // Compilation fails here (Line 18) }</code>
根据 C 标准 (14.2/4),当在 . 之后调用成员模板特化时,必须显式指定模板关键字以将其与非模板成员函数。
要解决编译错误,代码应修改如下:
<code class="cpp">template<class T> void g() { A<T> a; a.template f<3>(); // add `template` keyword here }</code>
通过添加 template 关键字,编译器会识别调用的函数是成员模板专业化,解决歧义并允许代码成功编译。
以上是为什么在 C 中模板函数内的模板成员函数调用失败?的详细内容。更多信息请关注PHP中文网其他相关文章!