gpt4 book ai didi

yaml-cpp - yaml-cpp中如何指定Null节点的输出格式?

转载 作者:行者123 更新时间:2023-12-04 18:08:26 33 4
gpt4 key购买 nike

我使用当前(2013/12/12)最新版本的 yaml-cpp。

我注意到 YAML::Load("")YAML::Load("---\n...") 导致 Null 节点,即 YAML::Load("").Type() == YAML::NodeType::Null然而,当发送到 std::ostream 时,前者输出一个空字符串但后者输出波浪号 (~)。

我希望两个节点都输出一个空字符串。我怎样才能实现它?

我想这样做是因为我注意到当我使用 YAML::Load 时波浪号被解释为一个字符串。

这是显示这种差异的代码。

#include <yaml-cpp/yaml.h>
#include <iostream>
#include <cassert>

int main() {
YAML::Node node1 = YAML::Load("");
YAML::Node node2 = YAML::Load("---\n...");

assert (node1.Type() == YAML::NodeType::Null);
assert (node2.Type() == YAML::NodeType::Null);

std::cout << node1 << std::endl;
std::cout << node2 << std::endl;
}

/* OUTPUT:

~
*/

最佳答案

根据 the Github Issue , 此行为已于 2016 年修复。

关于yaml-cpp - yaml-cpp中如何指定Null节点的输出格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20544174/

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