template<class T = int>
struct v2 {
T x;
// this is the part
template<class T, std::enable_if?>
v2& operator++(int n) {}
};
我想启用它,以便++v2
仅在它是整数(或长整数)时编译,如果是其他任何东西则不编译。
答案 0 :(得分:1)
您需要部分专门化v2
:
template<class T = int, typename = void>
struct v2 {
T x;
};
template<class T>
struct v2<T, std::enable_if_t<std::is_same_v<T, int> || std::is_same_v<T, long>>> {
T x;
v2& operator++(int);
};
或者,可以将常用功能放在另一个用作v2
基础的类中。