搜索一组独特的指针

时间:2013-05-27 06:40:04

标签: c++ c++11 set unique-ptr

我有一组指向对象的唯一指针。有时,我会透露一些指向这些对象的原始指针,因此代码的其他部分可以对这些对象进行处理。此代码不知道指针是否指向由某组唯一指针维护的对象,因此我需要检查指针指向的对象是否在唯一的指针集中。

简单的代码:

int* x = new int(42);
std::set<std::unique_ptr<int>> numbers;
numbers.insert(std::unique_ptr<int>(x));

numbers.find(x) // does not compile

我理解为什么代码不能编译,但我想不出用STL搜索元素的方法。有什么东西可以满足我的需求,还是我必须手动迭代集合中的所有元素?

2 个答案:

答案 0 :(得分:6)

您可以像这样使用std::find_ifstd::find_if(numbers.begin(), numbers.end(), [&](std::unique_ptr<int>& p) { return p.get() == x;});

答案 1 :(得分:2)

为什么不使用boost::ptr_set instread?