gpt4 book ai didi

c++ - 如何使用 tinyxml2 查询字符串属性?

转载 作者:数据小太阳 更新时间:2023-10-29 02:03:38 28 4
gpt4 key购买 nike

嗨,有人知道如何使用 tinyxml2 将属性查询到字符串变量吗?

例子:

<pattern>
<distances numberOfDistances="1" realWorldPixelSize="0.26428571428571429">
<markerDistance linkName="AB" distance="58.624385902531891"/>
</distances>
</pattern>

获取我使用的距离属性

for (tinyxml2::XMLElement* child = distancesElement->FirstChildElement(); child != NULL; child = child->NextSiblingElement())
{
double distance;
child->QueryAttribute("distance", &distance);
distances.push_back(MarkerDistance(linkName, distance));
}

我想一个字符串应该是这样的:

std::string linkName;
child->QueryAttribute("linkName", &linkName);

但是对于字符串来说似乎没有过载。

最佳答案

好的,我找到了。

使用:

const char * name
name = child->Attribute("linkName");

关于c++ - 如何使用 tinyxml2 查询字符串属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33961615/

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