C#集合类用法实例代码详解
下面介绍C#的集合类
1ArrayList
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespace 动态数组ArrayList { class Program { static void Main(string[] args) { ArrayList a1 = new ArrayList(); a1.Add(100); foreach (int number in new int[6] { 9, 3, 7, 2, 4, 8 }) { a1.Add(number); } int[] number2 = new int[2] { 11, 12 }; a1.AddRange(number2); a1.Remove(3); a1.RemoveAt(3); ArrayList al2 = new ArrayList(a1.GetRange(1,3)); Console.WriteLine("遍历方法1:"); foreach (int i in a1) { Console.WriteLine(i); } Console.WriteLine("遍历方法2:"); for (int i = 0; i < al2.Count; i++) { Console.WriteLine(al2[i]); } Console.ReadLine(); } } }
2 Stack
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespace Stack集合类 { class Program { static void Main(string[] args) { Stack s1 = new Stack(); Stack s2 = new Stack(); foreach (int i in new int[4] { 1, 2, 3, 4 }) { s1.Push(i); s2.Push(i); } foreach (int i in s1) { Console.WriteLine(i); } s1.Pop(); Console.WriteLine("出栈"); foreach (int i in s1) { Console.WriteLine(i); } int num=(int)s2.Peek(); Console.WriteLine("弹出最后一项{0}",num); foreach (int i in s2) { Console.WriteLine(i); } Console.ReadLine(); } } }
3Queue
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespace Queue集合类 { class Program { static void Main(string[] args) { Queue q1 = new Queue(); Queue q2 = new Queue(); foreach(int i in new int [4]{1,2,3,4}) { q1.Enqueue(i); q2.Enqueue(i); } foreach (int i in q1) { Console.WriteLine(i); } q1.Dequeue(); Console.WriteLine("q1出队"); foreach (int i in q1) { Console.WriteLine(i); } int num=(int)q2.Peek(); Console.WriteLine("取q2开始处{0}",num); foreach(int i in q2) { Console.WriteLine(i); } Console.ReadLine(); } } }
4Hashtable
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespace Hashtable集合类 { class Program { static void Main(string[] args) { Hashtable h = new Hashtable(); h.Add("E","e"); h.Add("B", "b"); h.Add("C", "c"); h.Add("A", "a"); foreach (DictionaryEntry e in h) { Console.Write("{0},{1} ", e.Key, e.Value); } Console.WriteLine(); string s = (string)h["C"]; Console.WriteLine(s); if (h.Contains("E")) { Console.WriteLine("含有E"); } Console.WriteLine(h["A"]); h.Remove(h["A"]); h.Clear(); foreach (DictionaryEntry e in h) { Console.Write("{0},{1} ", e.Key, e.Value); } Console.ReadLine(); } } }
5SortedList
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespace SortedList集合类 { class Program { static void Main(string[] args) { SortedList s1 = new SortedList(); s1["c"]=41; s1["a"]=42; s1["d"]=11; s1["b"]=13; foreach (DictionaryEntry e in s1) { string s = (string)e.Key; int i = (int)e.Value; Console.Write("{0},{1} ",s,i); } Console.ReadLine(); } } }
总结
以上所述是小编给大家介绍的C#集合类用法实例代码详解,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对我们网站的支持!
栏 目:C#教程
下一篇:C#带你玩扫雷(附源码)
本文标题:C#集合类用法实例代码详解
本文地址:https://www.xiuzhanwang.com/a1/C_jiaocheng/5445.html
您可能感兴趣的文章
- 01-10C#实现实体类与字符串互相转换的方法
- 01-10C#通过Semaphore类控制线程队列的方法
- 01-10C#3.0使用EventLog类写Windows事件日志的方法
- 01-10C#操作ftp类完整实例
- 01-10C#线程队列用法实例分析
- 01-10winform简单缓存类实例
- 01-10C#实现控制摄像头的类
- 01-10C#中Socket通信用法实例详解
- 01-10WPF实现类似360安全卫士界面的程序源码分享
- 01-10C#中的事务用法实例分析
阅读排行
本栏相关
- 01-10C#通过反射获取当前工程中所有窗体并
- 01-10关于ASP网页无法打开的解决方案
- 01-10WinForm限制窗体不能移到屏幕外的方法
- 01-10WinForm绘制圆角的方法
- 01-10C#实现txt定位指定行完整实例
- 01-10WinForm实现仿视频播放器左下角滚动新
- 01-10C#停止线程的方法
- 01-10C#实现清空回收站的方法
- 01-10C#通过重写Panel改变边框颜色与宽度的
- 01-10C#实现读取注册表监控当前操作系统已
随机阅读
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-10C#中split用法实例总结
- 04-02jquery与jsp,用jquery
- 01-11ajax实现页面的局部加载
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 01-10delphi制作wav文件的方法
- 01-10SublimeText编译C开发环境设置