时间:2021-05-20
下面介绍C#的集合类
1ArrayList
2Stack
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#集合类用法实例代码详解,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了C#索引属性的用法。分享给大家供大家参考。具体如下:这里演示C#类如何声明索引属性以表示不同种类事物的类似数组的集合。//indexedprope
本文实例讲述了C#入门教程之集合ArrayList用法。分享给大家供大家参考,具体如下:.NETFramework提供了用于数据存储和检索的专用类,这些类统称集
本文实例讲述了C#中JavaScriptSerializer帮助类用法。分享给大家供大家参考。具体如下:关键代码如下:复制代码代码如下:usingSystem;
本文实例讲述了C#中DataSet转化为实体集合类的方法,分享给大家供大家参考。具体实现方法如下:复制代码代码如下://////DataSet转换为实体类///
本文实例讲述了C#类中static变量用法。分享给大家供大家参考。具体分析如下:先来看一段代码:复制代码代码如下:usingSystem;namespacePa