Dictionary
描述:
用字符串键和对应值存储数据的字典类。
类对象:Dictionary Class。
继承自:Object。
count
类型: 只读成员变量。
描述:
字典储存的键值对总数。
签名:
const count: integer
keys
类型: 只读成员变量。
描述:
字典中所有键的列表。
签名:
const keys: {string}
get
类型: 函数。
描述:
访问字典数据的方法。
签名:
get: function(self: Dictionary, key: string): Item
参数:
参数名 | 类型 | 描述 |
---|---|---|
key | string | 字符串类型的索引键。 |
返回值:
返回类型 | 描述 |
---|---|
Item 或 nil | 字典里存储的值,如果不存在则返回nil。 |
set
类型: 函数。