2

作为一个更大项目的一部分,我在 C++(和 Qt)中创建了一个图形化的 yaml 文件编辑器。我使用 yaml-cpp 库,一切正常。是否也可以解析评论?写评论没问题,但我没有找到阅读它们的解决方案。

在此先感谢,菲利普

4

2 回答 2

3

这是不可能的(注释不是表示图的一部分,因此不会保留)。

于 2011-11-23T20:36:20.797 回答
1

如果我正确理解您的问题,您可以将它们添加为数据的一部分:

# This is an example yaml config file
_comment: This is a comment I would like to retain with my data
foo:
   _comment: Another one
   bar: 1
   baz: '2'
fie:
   bar: 3
   baz: "4"
fum:
   bar: 5
   baz: 6
于 2012-01-04T23:32:12.703 回答