Visual Basic Scripting Edition | 语言参考 |
Exists 方法如果在 Dictionary 对象中存在指定键,返回 True;如果不存在,返回 False。 object.Exists(key)
参数object 必选项. 总是 Dictionary 对象名称。 key 必选项. 在Dictionary 对象中查找的Key 值。 说明下面例子举例说明如何使用Exists 方法: Function KeyExistsDemo
Dim d, msg ' 创建一些变量。
Set d =CreateObject("Scripting.Dictionary") d.Add "a", "Athens" ' 添加一些键和项目。
d.Add "b", "Belgrade" d.Add "c", "Cairo" If d.Exists("c") Then msg =" 指定的键存在。" Else msg =" 指定的键不存在。" End If KeyExistsDemo =msg End Function
请参阅Add 方法(Dictionary) | Items 方法 | Keys 方法 | Remove 方法 | RemoveAll 方法 应用于:Dictionary 对象 返回首页 |