如何绑定变体apply_visitor?

时间:2014-10-09 08:38:45

标签: c++ boost bind variant

我有这个(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

1 个答案:

答案 0 :(得分:3)

您不必使用bindapply_visitor(isBad)已经为您返回了一个仿函数。