gpt4 book ai didi

c++ - yaml-cpp 读取项目中的序列

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:17:31 45 4
gpt4 key购买 nike

如何使用 yaml-cpp 读取此 YAML 文件:

sensors:
- id: 5
hardwareId: 28-000005a32133
type: 1
- id: 6
hardwareId: 28-000005a32132
type: 4

我不明白如何获得 sensors 项目,并使用它。

据我所知,sensors 是一个 YAML::Node。我怎样才能得到它?

更新 1:

YAML::Node config = YAML::LoadFile(config_path);
const YAML::Node& node_test1 = confg["sensors"];

for (std::size_t i = 0; i < node_test1.size(); i++) {
const YAML::Node& node_test2 = node_test1[i];
std::cout << "Id: " << node_test2["id"].as<std::string>() << std::endl;
std::cout << "hardwareId: " << node_test2["hardwareId"].as<std::string>() << std::endl << std::endl;
}

此代码有效,但它是使用有关旧 api 的教程编写的。我认为这段代码可以用迭代器重写,但我现在不知道如何。

最佳答案

看起来你的代码可以工作,但如果你想用迭代器重写它,你可以:

YAML::Node config = YAML::LoadFile(config_path);
const YAML::Node& sensors = config["sensors"];
for (YAML::iterator it = sensors.begin(); it != sensors.end(); ++it) {
const YAML::Node& sensor = *it;
std::cout << "Id: " << sensor["id"].as<std::string>() << "\n";
std::cout << "hardwareId: " << sensor["hardwareId"].as<std::string>() << "\n\n";
}

关于c++ - yaml-cpp 读取项目中的序列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31368135/

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