%YAML1.2#表示遵循YAML的版本号 ---#表示一个新的文件 my:#对象嵌套 name :nike age :!!str10#使用两个感叹号,强制转换数据类型 score:!!float13.0 bool :true children :~#~表示null brithday :1996-04-20 12:00:00 number :1.34e+3 interest:#数组 -basketball -football friends:#数组对象 -name:ming age:15 -name:hong age:14 relations:#对象 father :foo1 monther :foo2 comment:#表示一个字符串 a b c d comment1 :>#‘>’表示字符串尾部换行 a b c d comment2:|#‘|’表示每一行尾部都换行 a b c d father:&father_info#定义指针 name:foo1 age:40 monther:&monther_info name:foo2 age:39 monitor: father:*father_info#使用指针 monther:*monther_info ...#表示文件结束