【发布时间】:2024-01-30 05:05:01
【问题描述】:
将共享指针与自定义相等运算符和 std::list 一起使用时似乎存在问题。
我整理了以下示例代码来演示这个问题。
在尝试编译之前:
我正在使用gcc version 4.5.2 20110127
使用以下命令行:
g++ -g -O0 -std=gnu++0x test.cpp
如果未启用 c++0x 功能,源将无法编译。
#include<list>
#include<boost/shared_ptr.hpp>
using std::list;
using std::shared_ptr;
using std::cout;
using std::endl;
class TestInt
{
public:
TestInt(int x);
bool operator==(const TestInt& other);
private:
int _i;
};
TestInt::TestInt(int x)
{
_i = x;
}
bool
TestInt::operator==(const TestInt& other)
{
if (_i == other._i){
return true;
}
return false;
}
class Foo
{
public:
Foo(TestInt i);
shared_ptr<TestInt> f(TestInt i);
private:
list<shared_ptr<TestInt>> _x;
};
Foo::Foo(TestInt i)
{
_x.push_back(shared_ptr<TestInt>(new TestInt(i)));
};
shared_ptr<TestInt>
Foo::f(TestInt i)
{
shared_ptr<TestInt> test(new TestInt(i));
int num = _x.size();
list<shared_ptr<TestInt>>::iterator it = _x.begin();
for (int j=0; j<num; ++j){
if (test == *it){
return test;
}
++it;
}
throw "Error";
}
int main(){
TestInt ti(5);
TestInt ti2(5);
Foo foo(ti);
foo.f(ti2);
std::cout << "Success" << std::endl;
}
我原以为代码以 Success 结束,但它却抛出了。
在test 和*it 前面插入* 可以解决问题,但我的理解是,当shared_ptr 在其== 运算符中调用__a.get() == __b.get() 时,它应该使用@987654330 的自定义相等运算符@。我不明白为什么不是。这是一个错误吗?
提前致谢。
【问题讨论】:
-
使用编辑器中的
{}按钮来格式化代码。
标签: c++ c++11 shared-ptr comparison-operators