我对 boost::function 对象有以下定义:
typedef boost::function<std::string (std::string, std::string)> concat;
我将此函数作为结构构造函数参数传递:
struct add_node_value_visitor : boost::static_visitor<>
{
typedef boost::function<std::string (std::string, std::string)> concat;
add_node_value_visitor(concat _func, std::string key) : _func_concat(_func), _key(key) {}
template <typename T>
void operator() ( const T& value) const
{
std::string result = _func_concat(boost::lexical_cast<std::string, T>(value), _key);
}
std::string _key;
concat _func_concat;
};
现在我需要将 传递struct add_node_value_visitor
给以下函数,但是boost::function<T>
不接受 2 arg 成员函数,在文档中说我应该使用 boost::bind,但是我不确定我会怎么做,看到我还必须满足我的 boost::apply_visitor 功能。
boost::apply_visitor( add_node_value_visitor( &Decomposer::ConcatValues, key), var); // ConcatValues takes 2 args, var = boost::variant
std::string ConcatValues(std::string str, std::string key);
有什么想法吗?