INI所包含的最基本的“元素”就是parameter;每一个parameter都有一个name和一个value,如下所示: name = value
什么是sections ?
所有的parameters都是以sections为单位结合在一起的。所有的section名称都是独占一行,并且sections名字都被方括号包围着([ and ])。在section声明后的所有parameters都是属于该section。对于一个section没有明显的结束标志符,一个section的开始就是上一个section的结束,或者是end of the file。Sections一般情况下不能被nested,当然特殊情况下也可以实现sections的嵌套。
; last modified 1 April 2001by John Doe
[owner]
name=John Doe
organization=Acme Products
[database]
server=192.0.2.42
; use IP address in case network name resolution isnot working port=143file = "acme payroll.dat"