跳到主要内容

Dictionary

描述:

  用字符串键和对应值存储数据的字典类。

类对象:Dictionary Class

继承自:Object

count

类型: 只读成员变量。

描述:

  字典储存的键值对总数。

签名:

const count: integer

keys

类型: 只读成员变量。

描述:

  字典中所有键的列表。

签名:

const keys: {string}

get

类型: 函数。

描述:

  访问字典数据的方法。

签名:

get: function(self: Dictionary, key: string): Item

参数:

参数名类型描述
keystring字符串类型的索引键。

返回值:

返回类型描述
Item 或 nil字典里存储的值,如果不存在则返回nil。

set

类型: 函数。

描述:

  设置字典里的值的方法。

签名:

set: function(self: Dictionary, key: string, item: Item)

参数:

参数名类型描述
keystring字符串类型的索引键。
itemItem要为给定键设置的值,当设置值为nil时可以删除该键值对。

each

类型: 函数。

描述:

  遍历字典中每个键值对并调用处理函数。

签名:

each: function(self: Dictionary, func: function(Item, string): boolean): boolean

参数:

参数名类型描述
funcfunction对字典中每个键值对调用的函数。此函数会接收一个值对象Item和一个字符串的键作为参数,并需要返回一个布尔值。返回true停止遍历,false继续。

返回值:

返回类型描述
boolean如果遍历成功完成,则返回false,否则返回true。

clear

类型: 函数。

描述:

  从字典中删除所有键值对。

签名:

clear: function(self: Dictionary)

__index

类型: 元方法。

描述:

  允许使用索引访问字典的元方法,例如:dict['keyA'] 或 dict.keyB。

签名:

metamethod __index: function(self: Dictionary, key: string): Item

参数:

参数名类型描述
keystring字符串类型的索引键。

返回值:

返回类型描述
Item 或 nil字典里存储的值,如果不存在则返回nil。

__newindex

类型: 元方法。

描述:

  允许使用索引设置字典里的值的元方法,例如:dict['keyA'] = value 或 dict.keyB = value。

签名:

metamethod __newindex: function(self: Dictionary, key: string, item: Item)

参数:

参数名类型描述
keystring字符串类型的索引键。
itemItem要为给定键设置的值,当设置值为nil时可以删除该键值对。