Boost shared_ptr似乎不支持operator ==

时间:2011-12-28 22:02:15

标签: c++ qt boost operator-overloading shared-ptr

这是在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();
}

似乎正在进行指针比较,而不是按照我的预期进行。

我做错了什么?

2 个答案:

答案 0 :(得分:16)

shared_ptr是一个类似指针的类(它模拟带有额外功能的指针),因此operator== shared_ptr比较指针。

如果你想比较指向对象,你应该使用*jack == *jack,就像普通指针一样。

答案 1 :(得分:5)

试试这个:

(*jack) == (*jack);

请记住尊重你的指示。