c – 为什么默认模板参数的模板不能用作模板模板参数中具有较少模板参数的模板

前端之家收集整理的这篇文章主要介绍了c – 为什么默认模板参数的模板不能用作模板模板参数中具有较少模板参数的模板前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
myTemplateTemplate期望第二个模板参数是一个带有一个参数的模板.
myDefaultTemplate是一个带有两个参数的模板,第二个参数的默认值为int.

在VS2008中,我得到编译错误:类模板’myDefaultTemplate’的模板参数列表与模板参数’TT’的模板参数列表不匹配

那么为什么myDefaultTemplate不能用作一个参数的模板呢?
如果C编译器支持它会有任何负面影响吗?

template
<typename T1,typename T2 = int>
class
myDefaultTemplate{
      T1 a;
      T2 b;
};

template
<typename T1,template<typename T2> class TT>
class
myTemplateTemplate{
      T1 a;
      TT<T1> b;
};

int main(int argc,char* argv[]){
      myTemplateTemplate<int,myDefaultTemplate> bar; //error here:      
      return 0;
}

解决方法

从标准(见14.3.3第1段 – [temp.arg.template]):

A template-argument for a template template-parameter shall be the
name of a class template,expressed as id-expression. Only primary
class templates are considered when matching the template template
argument with the corresponding parameter; partial specializations are
not considered even if their parameter lists match that of the
template template parameter.

这意味着模板myDefaultTemplate将只被视为2参数模板.默认参数不会被考虑.

原文链接:https://www.f2er.com/c/112385.html

猜你在找的C&C++相关文章