繁体   English   中英

在std :: find_if中使用boost bind编译错误

[英]Compile error with boost bind in std::find_if

请考虑以下代码段:

#include <vector>
#include <algorithm>
#include <boost/function.hpp>
#include <boost/bind.hpp>

template<typename PODType>
class SomeClass
{
public:
    SomeClass() : m_pred(boost::bind(&SomeClass<PODType>::someMethodA, this, _1))
    {
    }

    bool someMethodA(const PODType& elem)
    {
        return false;
    }

    bool someMethodB(const std::vector<PODType>& vec)
    {
        return (std::find_if(vec.begin(), vec.end(), m_pred(_1)) != vec.end());
    }

private:
    boost::function<bool(PODType)> m_pred;
};


int main(int argc, char* argv[])
{
    SomeClass<int> obj;
    std::vector<int> v;
    obj.someMethodB(v);

    return 0;
}

编译器给出

error: no match for call to '(boost::function<bool(int)>) (boost::arg<1>&)'
note:   no known conversion for argument 1 from 'boost::arg<1>' to 'int'

对于行return (std::find_if(vec.begin(), vec.end(), m_pred(_1)));

我正在尝试为find_if调用在成员谓词内调用someMethodA

只需传递m_pred ,不需要m_pred(_1)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM