4

weak_ptr我正在尝试使用 GCC 4.7.2比较两组 C++11 。下面的代码显示了重现错误的最小可能样本:

std::set<std::weak_ptr<int>, std::owner_less<std::weak_ptr<int> > > set1;
std::set<std::weak_ptr<int>, std::owner_less<std::weak_ptr<int> > > set2;

bool result = (set1 == set2);

尝试编译上述结果会导致一长串错误,其中以下是第一个实际错误:

/usr/include/c++/4.7/bits/stl_algobase.h:791:6: error: no match for ‘operator==’ in ‘__first1.std::_Rb_tree_const_iterator<_Tp>::operator*<std::weak_ptr<int> >() == __first2.std::_Rb_tree_const_iterator<_Tp>::operator*<std::weak_ptr<int> >()’

由于 的瞬态特性weak_ptr,是否无法比较整组它们?

更新:

一个建议是使用:

bool result = !((set1 < set2) || (set2 < set1))

这导致:

/usr/include/c++/4.7/bits/stl_algobase.h:882:6: error: no match for ‘operator<’ in ‘__first1.std::_Rb_tree_const_iterator<_Tp>::operator*<std::weak_ptr<int> >() < __first2.std::_Rb_tree_const_iterator<_Tp>::operator*<std::weak_ptr<int> >()’
4

1 回答 1

4

由于weak_ptr不支持'==',但是在这种情况下你可以使用集合try的比较运算符:

bool result = !(std::lexicographical_compare(set1.begin(), set1.end(),
                                         set2.begin(), set2.end(),
                                         set1.value_comp()) ||
                std::lexicographical_compare(set2.begin(), set2.end(),
                                         set1.begin(), set1.end(),
                                         set1.value_comp()));

这将测试等效性,而不是相等性。它缺乏一定的……清晰度。

于 2012-12-19T19:51:44.363 回答