Remove 方法

Dictionary 对象中删除键和项目对。

object.Remove(key)

参数

object

必选项。应为 Dictionary 对象的名称。

key

必选项。与要从 Dictionary 对象中删除的键和项目对相关联的 Key

说明

如果指定的键和项目对不存在,则会出现错误。

下列代码示范如何使用 Remove 方法:

Dim a, d                    '创建变量。
Set d = CreateObject("Scripting.Dictionary")
d.Add "a", "Athens"         '添加键和项目。
d.Add "b", "Belgrade"
d.Add "c", "Cairo"
...
a = d.Remove("b")            '删除第二个项目对

请参阅

Add 方法(Dictionary) | Exists 方法 | Items 方法 | Keys 方法 | RemoveAll 方法

应用于: Dictionary 对象

www.51windows.Net