ASP Dictionary 对象

asp dictionary 对象

dictionary 对象用于在名称/值对中存储信息。

examples

尝试一下 - 实例

指定的键存在吗
本例演示如何创建一个 dictionary 对象,然后使用 exists 方法来检查指定的键是否存在。

<%
dim d
set d=server.createobject("scripting.dictionary")
d.add "n", "norway"
d.add "i", "italy"
if d.exists("n")= true then
    response.write("key exists.")
else
    response.write("key does not exist.")
end if
set d=nothing
%>

返回一个所有项目的数组

本例演示如何使用 items 方法来返回一个所有项目的数组。

<%
dim d,a,i,s
set d=server.createobject("scripting.dictionary")
d.add "n", "norway"
d.add "i", "italy"

response.write("<p>the values of the items are:</p>")
a=d.items
for i = 0 to d.count -1
    s = s & a(i) & "<br>"
next
response.write(s)

set d=nothing
%>

返回一个所有键的数组
本例演示如何使用 keys 方法来返回一个所有键的数组。

<%
dim d,a,i,s
set d=server.createobject("scripting.dictionary")
d.add "n", "norway"
d.add "i", "italy"
response.write("<p>the value of the keys are:</p>")
a=d.keys
for i = 0 to d.count -1
    s = s & a(i) & "<br>"
next
response.write(s)
set d=nothing
%>

返回一个项目的值

本例演示如何使用 item 属性来返回一个项目的值。

<%
dim d
set d=server.createobject("scripting.dictionary")
d.add "n", "norway"
d.add "i", "italy"
response.write("the value of the item n is: " & d.item("n"))
set d=nothing
%>

<b style="font-family:"sans serif", tahoma, verdana, helvetica;">设置一个键</b>

本例演示如何使用 key 属性来在 dictionary 对象中设置一个键。

<%
dim d
set d=server.createobject("scripting.dictionary")
d.add "n", "norway"
d.add "i", "italy"
d.key("i") = "it"
response.write("the key i has been set to it, and the value is: " & d.item("it"))
set d=nothing
%>

返回键/项目对的数量
本例演示如何使用 count 属性来返回键/项目对的数量。

<%
dim d, a, s, i
set d=server.createobject("scripting.dictionary")
d.add "n", "norway"
d.add "i", "italy"
response.write("the number of key/item pairs is: " & d.count)
set d=nothing
%>

 

dictionary 对象

dictionary 对象用于在名称/值对(等同于键和项目)中存储信息。dictionary 对象看似比数组更为简单,然而,dictionary 对象却是更令人满意的处理关联数据的解决方案。

比较 dictionaries 和数组:

  • 键用于识别 dictionary 对象中的项目
  • 您无需调用 redim 来改变 dictionary 对象的尺寸
  • 当从 dictionary 中删除一个项目时,其余的项目会自动上移
  • dictionary 不是多维,而数组是多维
  • dictionary 比数组带有更多的内建函数
  • dictionary 在频繁地访问随机元素时,比数组工作得更好
  • dictionary 在根据它们的内容定位项目时,比数组工作得更好

下面的实例创建了一个 dictionary 对象,并向对象添加了一些键/项目对,然后取回了键 gr 的项目值:

<%
dim d
set d=server.createobject("scripting.dictionary")
d.add "re","red"
d.add "gr","green"
d.add "bl","blue"
d.add "pi","pink"
response.write("the value of key gr is: " & d.item("gr"))
%>

输出:

the value of key gr is: green

dictionary 对象的属性和方法描述如下:

属性

属性 描述
comparemode 设置或返回用于在 dictionary 对象中比较键的比较模式。
count 返回 dictionary 对象中键/项目对的数目。
item 设置或返回 dictionary 对象中一个项目的值。
key 为 dictionary 对象中已有的键值设置新的键值。

方法

方法 描述
add 向 dictionary 对象添加新的键/项目对。
exists 返回一个布尔值,这个值指示指定的键是否存在于 dictionary 对象中。
items 返回 dictionary 对象中所有项目的一个数组。
keys 返回 dictionary 对象中所有键的一个数组。
remove 从 dictionary 对象中删除指定的键/项目对。
removeall 删除 dictionary 对象中所有的键/项目对。

相关文章