我有一个我的类 Foo 的智能 ptr 向量:
struct Foo
{
Foo() : mEnabled( false ) {}
bool mEnabled;
bool isEnabled() const { return mEnabled; }
void setEnabled( bool inEnabled ) { mEnabled = inEnabled; }
/* ... */
};
typedef std::tr1::shared_ptr< Foo > tFooPtr;
typedef std::vector< tFooPtr > tFooVec;
我有这个工作得很好:
tFooVec foo_vector; // insert couple of elements
size_t count = count_if( foo_vector.begin(), foo_vector.end(), std::tr1::mem_fn( &Foo::isEnabled ) );
但是当我想 count_if “禁用” Foo 对象时使用什么功能性“助手”
size_t count = count_if( foo_vector.begin(), foo_vector.end(), std::not1( std::tr1::mem_fn( &Foo::isEnabled ) ) ); // does not compile
上面的行不编译:
/usr/lib/gcc/x86_64-redhat-linux/4.1.2/../../../../include/c++/4.1.2/bits/stl_algo.h:446: error: no match for call to '(std::unary_negate<std::tr1::_Mem_fn<bool (Foo::*)()const> >) (std::tr1::shared_ptr<Foo>&)'
/usr/lib/gcc/x86_64-redhat-linux/4.1.2/../../../../include/c++/4.1.2/bits/stl_function.h:322: note: candidates are: bool std::unary_negate<_Predicate>::operator()(const typename _Predicate::argument_type&) const [with _Predicate = std::tr1::_Mem_fn<bool (Foo::*)()const>]
make: *** [src/shared_ptr_tests.o] Error 1
(在 Linux 上使用 g++ 4.1.2)
我认为编译问题来自于std::not1
使用std::unary_negate
需要提供的函数/谓词的事实Predicate::argument_type
。后者在谓词源自 sigh 时std::unary_function
给出
话虽如此,我假设std::tr1::mem_fn
既不使用std::unary_function
也不提供argument_type
.
我现在使用的解决方案是,我现在使用 boost::bind 而不是 std::tr1::bind
#include <boost/bind.hpp>
using namespace boost;
...
size_t countboost = count_if( foo_vector.begin(), foo_vector.end(), !( bind( &Foo::isEnabled, _1 )) );
为了避免复杂化(和混乱),我在我的代码中用 boost::bind 替换了 std::tr1::bind 的使用。