Hashtable 是一个暂时存储数据的容器,对于大量数量反复检索查询的速度很快,它利于用 key/value 形式的键值对来快速存取数据,key 是用于快速查找数据的键,value 是键 key 中所存的值。key是唯一的,value可以重复。
在vb.net中,对hashtable的简单基本操作
1、创建 Hashtable
Dim ht as new Hashtable
2、向 Hashtable 中添加值
ht.Add(“01”, “userName1”)
ht.Add(“02”, “userName2”)
ht.Add(“03”, “userName3”)
3、修改 Hashtable
ht(“01”) = “user1”
ht(“02”)= “user2”
ht(“03”) = “user3”
4、删除 Hashtable
1)删除指定的键值对
ht.Remove(“01”)
ht.Remove(“02”)
ht.Remove(“03”)
2)删除 Hashtable 中所有元素
ht.Clear()
5、查找指定key或value是否存在
ht.ContainsKey(key) = False
ht.ContainsValue(value) = False
6、查找获取指定key的value
ht(key)