我有一个带有重载operator +
的类供添加。我希望使用它来添加一个整数类型及其整数成员之一。但是,候选模板被忽略。正确的方法是什么?
#include <iostream>
using namespace std;
template <class T>
class A
{
public:
A(uint32_t a = 0)
: _a(a)
{ }
template <class TT, typename std::enable_if<std::is_integral<TT>::value>::type>
TT operator + (TT right) { return _a + right; }
private:
uint32_t _a;
};
class AT : public A<AT>
{
public:
AT() : A(10) { }
};
int main()
{
AT at;
cout<< (at + 10);
return 0;
}
答案 0 :(得分:3)
第二个模板参数typename std::enable_if<std::is_integral<TT>::value>::type
声明了一个匿名模板参数,不能在调用at + 10
时推导出。
我想你想要的是
// specify default value for the 2nd template parameter
template <class TT, typename std::enable_if<std::is_integral<TT>::value>::type* = nullptr>
T operator + (TT right) { return _a + right; }