3

几天前我开始使用 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;
}

感谢您的任何帮助或建议!

4

1 回答 1

1

llonesmiz 在评论中告诉我答案,但它消失了。如果有人有类似的问题,它可能会有所帮助:我必须在不同的运算符中处理 int 和 double 的每种组合。实现它的最简单方法是使用模板,如下所示:

struct my_less : boost::static_visitor<bool>
{
   template<typename T, typename U>
   bool operator()(T a, U b) const
   {
       return a<b;
   }   

};
于 2013-01-17T04:15:19.110 回答