VBS教程:方法-Exists 方法

时间:2021-05-23

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

请参阅

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章