gpt4 book ai didi

c++ - Boost 1.46.1,属性树 : How to iterate through ptree receiving sub ptrees?

转载 作者:IT老高 更新时间:2023-10-28 12:42:43 28 4
gpt4 key购买 nike

首先我要说我认为我知道应该怎么做,但是我的代码不会以我尝试的任何方式编译。我的假设基于 this official example of empty ptree trick .在那里你可以找到下一行:

  const ptree &settings = pt.get_child("settings", empty_ptree<ptree>());

这表明可以(或应该)从 ptree 中取出 subptree。

所以我假设我们可以用类似 BOOST_FOREACH 这样的方式遍历 ptree:

BOOST_FOREACH(const boost::property_tree::ptree &v,
config.get_child("servecies"))
{

}

但我得到下一个错误:

Error 1 error C2440: 'initializing' : cannot convert from 'std::pair<_Ty1,_Ty2>' to 'const boost::property_tree::ptree &'

或者如果我尝试

BOOST_FOREACH(boost::property_tree::ptree &v,
config.get_child("servecies", boost::property_tree::empty_ptree<boost::property_tree::ptree>()))
{

}

我明白了:

Error 1 error C2039: 'empty_ptree' : is not a member of 'boost::property_tree'

那我该怎么办:如何迭代 Boost Ptree 并获得子 Ptree?

更新:我也试过这样的代码

    BOOST_FOREACH(boost::property_tree::ptree::value_type &v,
config.get_child("path.to.array_of_objects"))
{
std::cout << "First data: " << v.first.data() << std::endl;
boost::property_tree::ptree subtree = (boost::property_tree::ptree) v.second ;
BOOST_FOREACH(boost::property_tree::ptree::value_type &vs,
subtree)
{
std::cout << "Sub data: " << vs.first.data() << std::endl;
}
}

这会编译,不会抛出任何异常,但不会计算任何 Sub data,它只是跳过这个循环。

更新 2:

嗯...我的 xml 中可能出了点问题 - 现在我使用该代码得到了正确的结果。

最佳答案

属性树迭代器指向 (key, tree) 类型的 ptree::value_type 对。因此,用于遍历 path 节点的子节点的标准循环如下所示:

BOOST_FOREACH(const ptree::value_type &v, pt.get_child(path)) {
// v.first is the name of the child.
// v.second is the child tree.
}

关于c++ - Boost 1.46.1,属性树 : How to iterate through ptree receiving sub ptrees?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6656380/

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