美文网首页
(二十九)C++篇-template(二)

(二十九)C++篇-template(二)

作者: GoodTekken | 来源:发表于2022-10-27 16:35 被阅读0次

同一模板的声明和定义中,模板形参的名字不必相同。

// all three uses of calc refer to the same function template
// forward declarations of the template
template <class T> T calc(const T&, const T&) ;
template <class U> U calc(const U&, const U&) ;
// actual definition of the template
template <class Type>
Type calc(const Type& a, const Type& b) { /* ... */ }

每个模板类型形参前面必须带上关键字 class 或 typename,每个非类型形参前面必须带上类型名字,省略关键字或类型说明符是错误的

// error: must precede U by either typename or class
template <typename T, U> T calc (const T&, const U&) ;

相关文章

网友评论

      本文标题:(二十九)C++篇-template(二)

      本文链接:https://www.haomeiwen.com/subject/rqktirtx.html