更新时间2019-07-24 13:35:23
class Count{
public:
template<typename T,typename TT>
auto Add1(T a,TT b)->decltype(T+TT)
{
decltype(T+TT) c;
c=a+b;
return c;
}
template<typename T,typename TT>
auto Add2(T a,TT b)->decltype(T-TT)
{
decltype(T-TT) c;
c=a-b;
return c;
}
template<typename T,typename TT>
auto Add3(T a,TT b)->decltype(T*TT)
{
decltype(T*TT) c;
c=a*b;
return c;
}
template<typename T,typename TT>
auto Add4(T a,TT b)->decltype(T/TT)
{
decltype(T/TT) c;
c=a/b;
return c;
}
Count();
~Count();
private:
long long a;
long long b;
};
Dev-c++编译器报错如下:
[Error] expected type-specifier before 'decltype'
[Error] expected initializer before 'decltype'
[Error] expected type-specifier before 'decltype'
[Error] expected initializer before 'decltype'
[Error] expected type-specifier before 'decltype'
[Error] expected initializer before 'decltype'
[Error] expected type-specifier before 'decltype'
[Error] expected initializer before 'decltype'
dev-cpp用的是gcc编译器,它不支持
auto Add1(T a,TT b)->decltype(T+TT)
这种语法的,具体的是不支持模板类型的+-*/运算
只支持基本类型,如
auto test(int a,int b)->decltype(a+b)
(即使使用--std=c++14)
个人也感觉这样有问题,若是非基本类型,如结构或类,它的
+-*/如何运算?
而较新版本的gcc (Ubuntu 7.3.0)用上c++17还是不支持
我没有细细研究过ISO C++标准是否支持这样语法
我的测试,vc++2019(19.21.27702.2)支持你的语法的