gpt4 book ai didi

c++ - boost::variant 类型转换

转载 作者:可可西里 更新时间:2023-11-01 16:25:58 24 4
gpt4 key购买 nike

我有来自 boost 库的以下变体:

typedef boost::variant<int, float, double, long, bool, std::string, boost::posix_time::ptime> variant;

现在我想从声明为“value”的变量中获取一个值' 在 struct node ,所以我想我可以工作通用并调用函数:find_attribute<long>(attribute); ,但是编译器说它不能从 variant 转换为 long 或我给它的任何其他类型。我做错了什么?

template <typename T>
T find_attribute(const std::string& attribute)
{

std::vector<boost::shared_ptr<node> >::iterator nodes_iter = _request->begin();

for (; nodes_iter != _request->end(); nodes_iter++)
{
std::vector<node::attrib>::iterator att_iter = (*nodes_iter)->attributes.begin();
for (; att_iter != att_iter; (*nodes_iter)->attributes.end())
{
if (att_iter->key.compare(attribute) == 0)
{
return (T)att_iter->value; //even explicit cast doesn't wrok??
//return temp;
}

}

}
}

最佳答案

你必须使用 boost::get<type>(variant) 从变体中获取值。

关于c++ - boost::variant 类型转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4539573/

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