add underline -----------------

This commit is contained in:
stanzhai
2014-06-10 20:00:15 +08:00
parent a7b42bb013
commit 9698ddc391
27 changed files with 42 additions and 23 deletions

View File

@@ -1,4 +1,5 @@
# 下标 (Subscripts)
# 下标Subscripts
-----------------
下标可以定义在类(Class)、结构体(structures)和枚举(enumerations)这些目标中,可以认为是访问对象、集合或序列的快捷方式。举例来说,用下标访问一个数组(Array)实例中的元素可以这样写 `someArray[index]` ,访问字典(Dictionary)实例中的元素可以这样写 `someDictionary[key]`,而不需要再调用实例的某个方法来获得元素的值。