这是在Windows 7(boost.1.48)
下的最新QT IDE上运行的class Employee {
public:
int Id;
...
bool operator==(const Employee& other) {
qDebug() << this->Id << ":" << "compare with " << other.Id;
return this->Id==other.Id;
}
}
测试代码:
Employee jack1;
jack1 == jack1; // the operator== gets invoked.
shared_ptr<Employee> jack(new Employee);
jack == jack; // the operator== doesn't get invoked.
boost头文件中的相关代码是:
template<class T, class U> inline bool operator==(shared_ptr<T> const & a, shared_ptr<U> const & b)
{
return a.get() == b.get();
}
似乎正在进行指针比较,而不是按照我的预期进行。
我做错了什么?
答案 0 :(得分:16)
shared_ptr
是一个类似指针的类(它模拟带有额外功能的指针),因此operator==
shared_ptr
比较指针。
如果你想比较指向对象,你应该使用*jack == *jack
,就像普通指针一样。
答案 1 :(得分:5)
试试这个:
(*jack) == (*jack);
请记住尊重你的指示。