1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
using
System;
using
System.Collections.Generic;
using
System.Linq;
using
System.Text;
using
System.Collections;
namespace
hashTableTest
{ class
Program
{
static
void
Main( string [] args)
{
Hashtable ht = new
Hashtable();
//哈希表元素的添加
ht.Add(1, "星期一" );
ht.Add(2, "星期二" );
ht.Add(3, "星期三" );
ht.Add(4, "星期四" );
ht.Add(5, "星期五" );
ht.Add(6, "星期六" );
ht.Add(7, "星期日" );
//哈希表元素的获取
Console.WriteLine(ht[1]);
//哈希表元素的删除
ht.Clear();
//哈希表元素的修改
ht[1] = "礼拜1" ;
//判断是否存在哈希元素返回值为True/false
ht.Contains(1);
ht.ContainsKey(1); //根据KEY值判断 结果为True
ht.ContainsValue( "星期一" ); //根据Value值判读 结果为True
//哈希表元素的遍历
foreach
(DictionaryEntry my in
ht)
{
Console.WriteLine(my.Key);
Console.WriteLine(my.Value);
}
Console.ReadLine();
}
}
} |
相关文章
- 11-02力扣3. 无重复字符的最长子串---滑动窗口+哈希表
- 11-02vuex的属性和基本用法
- 11-02b_lc_存在重复元素III(order哈希表的查询)
- 11-02R语言的一些基本函数用法
- 11-02Hashtable的用法
- 11-02哈希表的伟大之处!
- 11-02哈希表的C语言链表实现
- 11-02Dapper学习 - Dapper的基本用法(一) - 查询
- 11-02杨表的构造与基本性质
- 11-02SQL语句中----删除表数据drop、truncate和delete的用法