初探YAML

YAML何许物也?在XML泛滥的情况下,YAML的出现的确让人眼前一亮,在初步学习了YAML以后,粗略的总结了一下,拿出来和大家分享。

[MindMap]

初探YAML

[参考文档]
YAML Specification 
YAML 数据类型说明

[摘要]
YAML的设计目的
YAML描述: [注释, 文档, 数据结构, 数据类型, 其他]


YAML的设计目的

1、容易人类阅读
2、适合表示程序语言的数据结构
3、可用于不同程序间交换数据
4、支持泛型工具
5、支持串行处理?
6、丰富的表达能力和可扩展性
7、易于使用

粗看了specification以后感觉最好的是“容易人类阅读”,对比一下下面的xml和yaml的代码块:

# xml代码块:

初探YAML<site>
初探YAML    <name>sina</name>
初探YAML    <url>http://www.sina.com.cn</url> 
初探YAML</site>
初探YAML<site>
初探YAML    <name>google</name>
初探YAML    <url>http://www.google.com</url>
初探YAML</site>

# YAML代码块

初探YAML---
初探YAMLsite: 
初探YAML    name: sina 
初探YAML    url : http://www.sina.com.cn
初探YAML---
初探YAMLsite:
初探YAML    name: google
初探YAML    url : http://www.google.com
初探YAML初探YAML

或:

初探YAML---
初探YAMLsite: {name: sina, url: http://www.sina.com.cn}
初探YAML---
初探YAMLsite: {name: google, url: http://www.google.com}

YAML利用缩进或者是explicit indicatior(如上面的{})来表示属性的嵌套,更为直观和simple。


YAML描述

“YAML Ain't Markup Language” (abbreviated YAML) is a data serialization language designed to be human-friendly and work well with modern programming languages for common everyday tasks.

先来看看YAML里的主要标记:

(1)注释:
初探YAML
举个例子:
# Comment Example
# Profile Of Mary
Mary:
    - name: Mary
    - age  : 19   # age property

(2)文档(document):
初探YAML
现在还不明白文档是什么意思,既然YAML定义是data serialization,暂时把一个doucment视为一个object序列化后得到的yaml配置信息

初探YAML# documents example
    ---
初探YAMLsite: {name: sina, url: http://www.sina.com.cn}
初探YAML---
初探YAMLsite: {name: google, url: http://www.google.com}

(3)数据结构:
YAML的设计者认为在配置文件中所要表达的数据内容有三种类型:标量(Scalar,如字符串和整数等)、序列(Sequence,如数组)和Mapping(类似hash的key/value pair)。

sequence型主要是用来表示数组类型的数据。下图描述了YAML中Sequence型数据的表示法:
初探YAML

mapping数据类型主要用来表示key: value对类型的数据。YAML描述方式见下图:
初探YAML

最后,我们用YAML来描述一本书《单元测试知道-c#版》

初探YAML# 《单元测试之道-c#版》描述
初探YAML---  # begin of document
初探YAML书名  : '单元测试之道-C#版'
初探YAML出版社: '电子工业出版社'
初探YAML原作者: ['Andrew Hunt', 'David Thomas']
初探YAML译者  : 
初探YAML    - 陈伟柱
初探YAML     - 陶文
初探YAML前二章节  : 
初探YAML    - 第一章: 序言
初探YAML    - 第二章: 你的首个单元测试计划
初探YAML
初探YAML初探YAML  #end of document
初探YAML

YAML推荐使用空格作为缩进,避免了在不同编辑器中对tab的表示形式不同而可能产生误解。

上一篇:[Codeforces 266E]More Queries to Array...(线段树+二项式定理)


下一篇:【学习】C++多态机制