gpt4 book ai didi

c++ - 非类型模板参数必须是 C++ 中的标量类型错误?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:58:10 26 4
gpt4 key购买 nike

<分区>

这个:

Nontype template argument must be of scalar type

是我尝试使用 Turbo C++ 4.5 构建此程序时遇到的错误。我有一些错误,例如:

non-type template argument refers to function that does not have linkage

但是这个错误对我来说是全新的。代码有什么问题?

#include<iostream.h>
template<class T1=int,class T2=int>
class tempex
{
T1 a;
T2 b;
public:
tempex(T1 x,T2 y)
{
a=x;
b=y;
}
void show()
{
cout<<"A= \t"<<a<<"\tB=\t"<<b;
}
};

int main()
{
tempex <float,int> te1(1.23,123);
te1.show();
return 0;
}

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