gpt4 book ai didi

C++,RapidXML : function to get total of siblings nodes

转载 作者:太空宇宙 更新时间:2023-11-04 13:18:34 25 4
gpt4 key购买 nike

例如:

<something>
<x/>
<x/>
<y/>
<z/>
</something>

它必须返回 2,我考虑过使用,例如:

int Get_total_x(){
int total=0;
for(xml_node<> *x=root_node->first_node("x"); x; x=x->next_sibling()){
total++;
};
return total;
};

RapidXML 有专门的功能吗?

最佳答案

我对rapidxml不熟悉,反正我只是浏览了代码,我发现了

inline std::size_t count_children(xml_node<Ch> *node)

rapidxml_utils.hpp

关于C++,RapidXML : function to get total of siblings nodes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36232403/

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