Yaml

# Person information
person:
  name: John Doe
  age: 30
  address:
    street: 123 Main St
    city: Somewhere
    country: USA
  hobbies:
    - reading
    - hiking
    - coding

# A list of items
items:
  - apple
  - banana
  - orange

yaml-cpp依赖安装

yaml-cpp

sudo apt install libyaml-cpp-dev
git clone <https://github.com/jbeder/yaml-cpp.git>
cd yaml-cpp
mkdir build
cd build
cmake ..
make && make install

yaml-cpp用法

几种YAML::NodeType: