gpt4 book ai didi

c++ - 如何比较 boost::variant 以使其成为 std::map 的键?

转载 作者:太空狗 更新时间:2023-10-29 20:31:24 24 4
gpt4 key购买 nike

如何比较 boost::variant 以使其成为 std::map 的键?似乎没有为 boost::variant 定义 operator<()

最佳答案

编辑以修复错误应用 BOOST::APPLY_VISITOR

您可以为您的变体创建一个二进制访问者,然后使用 boost::apply_visitor 为您的 map 创建一个比较器:

class variant_less_than
: public boost::static_visitor<bool>
{
public:

template <typename T, typename U>
bool operator()( const T & lhs, const U & rhs ) const
{
// compare different types
}

template <typename T>
bool operator()( const T & lhs, const T & rhs ) const
{
// compare types that are the same
}

};

您可能需要重载 operator()对于每对可能的类型,与使用模板化 operator(const T &, const U &) 相比.然后你需要像这样声明你的 map :

class real_less_than
{
public:
template<typename T>
bool operator()(const T &lhs, const T &rhs)
{
return boost::apply_visitor(variant_less_than(), lhs, rhs);
}
};

std::map<boost::variant<T, U, V>, ValueType, real_less_than> myMap;

编辑:就其值(value)而言,operator<()boost::variant 定义然而它被定义为:

bool operator<(const variant &rhs) const
{
if(which() == rhs.which())
// compare contents
else
return which() < rhs.which();
}

我假设这不是您想要的。

关于c++ - 如何比较 boost::variant 以使其成为 std::map 的键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4350574/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com