文件名称:字典语法基础
文件大小:117KB
文件格式:XLSM
更新时间:2018-01-27 07:46:15
字典语法基础
'Add方法 '向 Dictionary 对象中添加一个关键字项目对。 'object.Add (key, item) 'Object '必选项。总是一个 Dictionary 对象的名称。 'Key '必选项。与被添加的 item 相关联的 key。 'Item '必选项。与被添加的 key 相关联的 item。 '说明 '如果 key 是唯一存在的,否则将导致一个错误。 Sub test() Dim d As New Dictionary Set d = CreateObject("scripting.Dictionary") d.Add "张三", "123" d.Add "李四", "456" '对象.新增 Key,Item '注意:在本地窗口中可能看不到Item条件。 'Keys方法 '返回一个数组,其中包含了一个 Dictionary 对象中的全部现有的关键字。 i = d.Keys(1) '前期绑定写法 '方法1 j = Application.Index(d.Keys, 2) '方法2 k = d.Keys l = k(1) '方法3 'Items方法 '返回一个数组,其中包含了一个 Dictionary 对象中的所有项目。 r = d.Items(1) '前期绑定写法 '方法1 s = Application.Index(d.Items, 2) '方法2 t = d("李四") '方法3 w = d.Items v = w(1) '方法4 End Sub