VBS教程:方法-Exists 方法
程序员文章站
2022-04-10 08:24:45
exists 方法如果在 dictionary 对象中存在指定键,返回 true;如果不存在,返回 false。...
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 = msgend function
请参阅
上一篇: VBS教程:方法-Write 方法