我对重载函数的变体值有疑问。我想根据变量中存储的内容,用 int 或 string 调用重载函数。这就是我想这样做的方式,但我不能:
class X
{
void foo(int i, int z) { /*use int i and z*/; }
void foo(const std::string& s, int z) { /*use string s and z*/; }
struct MyVisitor : public boost::static_visitor<int>
// !!! Here is the problem.
// I can't return int or std::string,
// so it's impossible to use template operator()
{
template<typename Data>
const Data operator()(const Data data) const { return data; }
};
public:
/*somehow m_queue pushed ...*/
void func_uses_variant(int z)
{
boost::variant<int, std::string> v = m_queue.pop();
foo(boost::apply_visitor(MyVisitor(), v), z);
}
private:
SomeQueue m_queue;
}
是否可以使用访问者编写它,或者我应该这样做:
void func_uses_variant(int z)
{
boost::variant<int, std::string> v = m_queue.pop();
if (int* foo_arg = boost::get<int>(&v))
{
foo(*foo_arg, z);
}
else if (std::string* foo_arg = boost::get<std::string>(&v))
{
foo(*foo_arg, z);
}
}
我尝试对 MyVisitor 使用可变参数,但由于 boost::static_visitor 接口而失败。也许有一个解决方案。
int z in function 只是为了表明 foo() 参数中不仅有 boost::variant。