C#中HashSet<T>、SortedSet<T>和Hashtable的使用以及所有集合类型的概述
2022/4/8 12:19:19
本文主要是介绍C#中HashSet<T>、SortedSet<T>和Hashtable的使用以及所有集合类型的概述,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
本文主要介绍.NET(C#)中,HashSet<T>、SortedSet<T>和Hashtable的使用,以及相关的示例代码。
1、HashSet<T>
HashSet<T>
类提供高性能的设置操作。 集是不包含重复元素的集合,其元素无特定顺序。泛型的使用保证类型安全,可以避免装箱拆箱。对象的容量 HashSet<T>
是对象可以容纳的元素数。 HashSet<T>
当向对象添加元素时,对象的容量会自动增加。两个集合求交集、并集、差集和补集等操作。
例如:
Console.WriteLine("***************HashSet<string>******************"); HashSet<string> hashSet = new HashSet<string>(); hashSet.Add("C#"); hashSet.Add("C/C++"); hashSet.Add("Java"); hashSet.Add("Python"); hashSet.Add("Python"); hashSet.Add("Python"); //hashSet[0]; foreach (var item in hashSet) { Console.WriteLine(item); } Console.WriteLine(hashSet.Count); Console.WriteLine(hashSet.Contains("Python")); HashSet<string> hashSet1 = new HashSet<string>(); hashSet1.Add("C#"); hashSet1.Add("C/C++"); hashSet1.Add("Java"); hashSet1.Add("Python"); hashSet1.Add("Python"); hashSet1.Add("Python"); hashSet1.SymmetricExceptWith(hashSet);//补 hashSet1.UnionWith(hashSet);//并 hashSet1.ExceptWith(hashSet);//差 hashSet1.IntersectWith(hashSet);//交 hashSet.ToList(); hashSet.Clear();
2、SortedSet<T>
SortedSet<T>
表示按排序顺序维护的对象的集合。SortedSet<T>
对象在插入和删除元素时维护排序顺序,而不会影响性能。
例如:
Console.WriteLine("***************SortedSet<string>******************"); SortedSet<string> sortedSet = new SortedSet<string>(); //IComparer<T> comparer 自定义对象要排序,就用这个指定 sortedSet.Add("C#"); sortedSet.Add("C/C++"); sortedSet.Add("Java"); sortedSet.Add("Python"); sortedSet.Add("Python"); sortedSet.Add("Python"); foreach (var item in sortedSet) { Console.WriteLine(item); } Console.WriteLine(sortedSet.Count); Console.WriteLine(sortedSet.Contains("Python")); { SortedSet<string> sortedSet1 = new SortedSet<string>(); sortedSet1.Add("C#"); sortedSet1.Add("C/C++"); sortedSet1.Add("Java"); sortedSet1.Add("Python"); sortedSet1.Add("Python"); sortedSet1.Add("Python"); sortedSet1.SymmetricExceptWith(sortedSet);//补 sortedSet1.UnionWith(sortedSet);//并 sortedSet1.ExceptWith(sortedSet);//差 sortedSet1.IntersectWith(sortedSet);//交 } sortedSet.ToList(); sortedSet.Clear();
3、Hashtable
Hashtable
表示根据键的哈希代码进行组织的键/值对的集合。任何元素都是当成object
处理,如果是值类型,会有装箱操作。不推荐使用 Hashtable
类进行新的开发。 推荐使用泛型 Dictionary<TKey,TValue>
类。
例如:
Console.WriteLine("***************Hashtable******************"); Hashtable table = new Hashtable(); table.Add("code", "C#"); table[1011] = "Java"; table[1012] = "Python"; table[1014] = 3333; table[1015] = 4444; table["cjavapy"] = 5457; foreach (DictionaryEntry objDE in table) { Console.WriteLine(objDE.Key.ToString()); Console.WriteLine(objDE.Value.ToString()); } //线程安全,Hashtable.Synchronized(table)返回 Hashtable 的同步(线程安全)包装。 var shash = Hashtable.Synchronized(table);//只有一个线程写 多个线程读 //显示两个哈希表的同步状态 Console.WriteLine("table: {0}", table.IsSynchronized ? "synchronized" : "not synchronized" ); Console.WriteLine("shash: {0}", shash.IsSynchronized ? "synchronized" : "not synchronized");
原文地址:https://www.cjavapy.com/article/2510/
C#集合类型概述
集合是.NET FCL(Framework Class Library)中很重要的一部分。所有的集合类都继承自IEnumerable。集合类总体可分为一下几类:关联/非关联型集合,顺序/随机访问集合,顺序/无序集合,泛型/非泛型集合,线程安全集合。
各集合类底层接口关系图
原文地址:https://www.cnblogs.com/shizheng0909/p/14451698.html
这篇关于C#中HashSet<T>、SortedSet<T>和Hashtable的使用以及所有集合类型的概述的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2022-03-01沐雪多租宝商城源码从.NetCore3.1升级到.Net6的步骤
- 2024-12-06使用Microsoft.Extensions.AI在.NET中生成嵌入向量
- 2024-11-18微软研究:RAG系统的四个层次提升理解与回答能力
- 2024-11-15C#中怎么从PEM格式的证书中提取公钥?-icode9专业技术文章分享
- 2024-11-14云架构设计——如何用diagrams.net绘制专业的AWS架构图?
- 2024-05-08首个适配Visual Studio平台的国产智能编程助手CodeGeeX正式上线!C#程序员必备效率神器!
- 2024-03-30C#设计模式之十六迭代器模式(Iterator Pattern)【行为型】
- 2024-03-29c# datetime tryparse
- 2024-02-21list find index c#
- 2024-01-24convert toint32 c#