我几天前开始使用boost库,所以我的问题可能很简单。 我想用static_visitor比较两个相同类型的变体。我尝试了以下,但它不想编译。
struct compare:public boost::static_visitor<bool>
{
bool operator()(int& a, int& b) const
{
return a<b;
}
bool operator()(double& a, double& b) const
{
return a<b;
}
};
int main()
{
boost::variant<double, int > v1, v2;
v1 = 3.14;
v2 = 5.25;
compare vis;
bool b = boost::apply_visitor(vis, v1,v2);
cout<<b;
return 0;
}
感谢您提供任何帮助或建议!
答案 0 :(得分:1)
struct my_less : boost::static_visitor<bool>
{
template<typename T, typename U>
bool operator()(T a, U b) const
{
return a<b;
}
};