asp dictionary 對象
dictionary 對象用于在名稱/值對中存儲信息。

嘗試一下 - 實例
指定的鍵存在嗎?
本例演示如何創(chuàng)建一個 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
%>
返回一個所有項目的數(shù)組
本例演示如何使用 items 方法來返回一個所有項目的數(shù)組。
<%
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
%>
返回一個所有鍵的數(shù)組
本例演示如何使用 keys 方法來返回一個所有鍵的數(shù)組。
<%
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;">設(shè)置一個鍵</b>
本例演示如何使用 key 屬性來在 dictionary 對象中設(shè)置一個鍵。
<%
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
%>
返回鍵/項目對的數(shù)量
本例演示如何使用 count 屬性來返回鍵/項目對的數(shù)量。
<%
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 對象看似比數(shù)組更為簡單,然而,dictionary 對象卻是更令人滿意的處理關(guān)聯(lián)數(shù)據(jù)的解決方案。
比較 dictionaries 和數(shù)組:
- 鍵用于識別 dictionary 對象中的項目
- 您無需調(diào)用 redim 來改變 dictionary 對象的尺寸
- 當從 dictionary 中刪除一個項目時,其余的項目會自動上移
- dictionary 不是多維,而數(shù)組是多維
- dictionary 比數(shù)組帶有更多的內(nèi)建函數(shù)
- dictionary 在頻繁地訪問隨機元素時,比數(shù)組工作得更好
- dictionary 在根據(jù)它們的內(nèi)容定位項目時,比數(shù)組工作得更好
下面的實例創(chuàng)建了一個 dictionary 對象,并向?qū)ο筇砑恿艘恍╂I/項目對,然后取回了鍵 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 | 設(shè)置或返回用于在 dictionary 對象中比較鍵的比較模式。 |
count | 返回 dictionary 對象中鍵/項目對的數(shù)目。 |
item | 設(shè)置或返回 dictionary 對象中一個項目的值。 |
key | 為 dictionary 對象中已有的鍵值設(shè)置新的鍵值。 |
方法
方法 | 描述 |
---|---|
add | 向 dictionary 對象添加新的鍵/項目對。 |
exists | 返回一個布爾值,這個值指示指定的鍵是否存在于 dictionary 對象中。 |
items | 返回 dictionary 對象中所有項目的一個數(shù)組。 |
keys | 返回 dictionary 對象中所有鍵的一個數(shù)組。 |
remove | 從 dictionary 對象中刪除指定的鍵/項目對。 |
removeall | 刪除 dictionary 對象中所有的鍵/項目對。 |