オーバーロードされた関数のバリアント値に問題があります。バリアントに格納されている内容に応じて、オーバーロードされた関数を 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 は、foo() パラメータに boost::variant だけがないことを示すためのものです。