我有一个像这样的模板类:
struct Base
{
bool operator==(const Base& other) const {
return v == other.v;
}
int v;
};
struct Abc : public Base
{
void execute() { /*logic1*/ }
};
struct Def : public Base
{
void execute() { /*logic2*/ }
};
template <typename T>
class Foo
{
public:
bool operator==(const Foo& other) const {
return (a == other.a) && (b == other.b);
}
int a;
T b;
};
这样可以正常工作,但是我想扩展这个operator ==()方法以允许相等只有在传入的对象具有相同的模板类型时才有效。这是一个例子:
Foo<Abc> obj1;
Foo<Abc> obj2;
Foo<Def> obj3;
obj1 == obj2; // should be true
obj1 == obj3; // should fail at compile-time or run-time
当我这样做时:
bool operator==(const Foo& other) const {
std::cerr << typeid(other).name() << std::endl;
return (a == other.a) && (b == other.b);
}
我注意到传入的类的实例被隐式转换为该类的类型。我想在模板化对象上包含一个成员变量来区分它们,但是必须添加一个我认为不需要的额外变量有点烦人。有没有更好的方法来实现这种平等测试?
答案 0 :(得分:1)
据我了解,存在从Foo<T1>
到Foo<T2>
的隐式转换。
可能的解决方案是:
禁止隐式类型转换(对构造函数和强制转换运算符使用explicit
关键字)。
将operator ==
模板化并使用enable_if
仅允许可能的组合:
template <typename T1, typename = std::enable_if<std::is_same<T, T2>::value>::type>
bool operator == (const Foo<T1>& other) const