哈希表(Hashtable)

C#中HashTable的用法

命名空间

System.Collections

 

名称

哈希表(Hashtable)

 

描述

用于处理和表现类似keyvalue的键值对,其中key通常可用来快速查找,同时key是区分大小写;value用于存储对应于key的值。Hashtable中keyvalue键值对均为object类型,所以Hashtable可以支持任何类型的keyvalue键值对.

 

二,哈希表的简单操作

Hashtable hshTable = new Hashtable(); //  创建哈希表
hshTable .Add("Person1",  "zhanghf");  //  往哈希表里添加键值对
hshTable .Clear();  //移除哈希表里所有的键值对
hshTable .Contains("Person1");   //判断哈希表里是否包含该键
string name = (string)hshTable["Person1"].ToString(); //取哈希表里指定键的值
hshTable.Remove("Person1"); //  删除哈希表里指定键的键值对
IDictionaryEnumerator en = hshTable.GetEnumerator();  //  遍历哈希表所有的键,读出相应的值
while (en.MoveNext())
            {
               string str = en.Value.ToString(); 
            }
 

下面控制台程序将包含以上所有操作:

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
50
51
52
class  Program
     {
         static  void  Main( string [] args)
         {
             // 创建一个Hashtable实例
             Hashtable ht= new  Hashtable();
 
             // 添加keyvalue键值对
             ht.Add( "A" , "1" );
             ht.Add( "B" , "2" );
             ht.Add( "C" , "3" );
             ht.Add( "D" , "4" );
 
             // 遍历哈希表
             foreach  (DictionaryEntry de in  ht)
             {
                 Console.WriteLine( "Key -- {0}; Value --{1}." , de.Key, de.Value);
             }
 
             // 哈希表排序
             ArrayList akeys= new  ArrayList(ht.Keys);
             akeys.Sort();
             foreach  ( string  skey in  akeys)
             {
                 Console.WriteLine( "{0, -15} {1, -15}" , skey, ht[skey]);
 
             }
 
             // 判断哈希表是否包含特定键,其返回值为true或false
             if  (ht.Contains( "A" ))
               Console.WriteLine(ht[ "A" ]);
             
             // 给对应的键赋值
             ht[ "A" ] = "你好" ;
 
             // 移除一个keyvalue键值对
             ht.Remove( "C" );
 
             // 遍历哈希表
             foreach  (DictionaryEntry de in  ht)
             {
                 Console.WriteLine( "Key -- {0}; Value --{1}." , de.Key, de.Value);
             }
        
             // 移除所有元素
             ht.Clear();
   
             // 此处将不会有任何输出
             Console.WriteLine(ht[ "A" ]);
             Console.ReadKey();
         }
     }
在C#中,你可以首先定义一个名为`Student`的类,包含姓名、班级和年龄等基本属性: ```csharp public class Student { public string Name { get; set; } public string ClassName { get; set; } public int Age { get; set; } // 构造函数 public Student(string name, string className, int age) { Name = name; ClassName = className; Age = age; } } ``` 接下来,你可以使用`Dictionary<TKey, TValue>`(类似于哈希表Hashtable)来存储学生的集合。这里我们使用字符串作为键(例如学生ID),`Student`对象作为值: ```csharp Dictionary<string, Student> studentCollection = new Dictionary<string, Student>(); // 增加学生 void AddStudent(Student student) { if (!studentCollection.ContainsKey(student.Name)) { studentCollection.Add(student.Name, student); Console.WriteLine($"添加了学生:{student.Name} - 班级:{student.ClassName}, 年龄:{student.Age}"); } else { Console.WriteLine("学生已存在,无法添加"); } } // 删除学生 void RemoveStudent(string studentId) { if (studentCollection.ContainsKey(studentId)) { studentCollection.Remove(studentId); Console.WriteLine($"删除了学生:{studentId}"); } else { Console.WriteLine($"找不到学生ID:{studentId}"); } } // 更新学生信息 void UpdateStudent(string studentId, string newName, string newClassName, int newAge) { if (studentCollection.TryGetValue(studentId, out Student student)) { student.Name = newName; student.ClassName = newClassName; student.Age = newAge; Console.WriteLine($"更新了学生:{student.Id} 的信息"); } else { Console.WriteLine($"找不到学生ID:{studentId}"); } } // 查询学生 void FindStudent(string studentId) { if (studentCollection.TryGetValue(studentId, out Student student)) { Console.WriteLine($"找到的学生:{student.Name} - 班级:{student.ClassName}, 年龄:{student.Age}"); } else { Console.WriteLine($"找不到学生ID:{studentId}"); } } // 示例用法 Student s1 = new Student("张三", "一班", 18); AddStudent(s1); // 添加学生 FindStudent("张三"); // 查找学生 UpdateStudent("张三", "李四", "二班", 19); // 更新学生 RemoveStudent("张三"); // 删除学生 ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值