我有这个(C ++ 03)代码,但是以某种方式,bind拒绝工作。有什么想法吗?

typedef boost::variant<int, string> Container;
std::vector<Container> v;
...
class IsBad: public boost::static_visitor<>
{
public:
    typedef bool result_type;
    result_type operator()(int& t) const    { return  i % 2;     }
    result_type operator()(string& s) const { return s == "foo"; }
};
IsBad isBad;
std::vector<Container>::iterator it2 =
         std::find_if(it, itEnd, bind(apply_visitor(isBad, _1)));
// bool is not a class, struct or union type

最佳答案

您不必使用bindapply_visitor(isBad)已经返回给您一个函子。

07-28 01:34