gpt4 book ai didi

c++ - 为什么带有默认模板参数的模板不能用作模板模板参数中模板参数较少的模板

转载 作者:可可西里 更新时间:2023-11-01 16:10:49 26 4
gpt4 key购买 nike

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 个参数模板。默认参数将不被考虑。

关于c++ - 为什么带有默认模板参数的模板不能用作模板模板参数中模板参数较少的模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6626759/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com