-
一篇关于C#集合的实例代码讲解
C#作为一种强类型语言,提供了丰富的集合接口和类型,用于存储、处理和操作数据。掌握这些集合接口和类型,对于开发人员来说是非常重要的。本篇文章将为你详细介绍C#中常用的集合接口和类型,并提供实例代码讲解,帮助你更好地理解和应用它们。
C#中常用的集合接口有:ICollection、IList、IDictionary、IEnumerable等,而集合类型则包括:List、Array、Dictionary等。我们一起来了解它们的特点和用法。
ICollection接口是所有集合类型的基接口,包含了添加、移除、清空等操作的定义。以List为例,它实现了ICollection接口,可以用于存储任意类型的数据,并可以通过索引访问集合中的元素。下面是一个使用List的实例代码:
List<string> fruits = new List<string>();
fruits.Add("apple");
fruits.Add("banana");
fruits.Add("orange");
Console.WriteLine("There are {0} fruits in the list:", fruits.Count);
foreach(string fruit in fruits)
{
Console.WriteLine(fruit);
}
fruits.Add("apple");
fruits.Add("banana");
fruits.Add("orange");
Console.WriteLine("There are {0} fruits in the list:", fruits.Count);
foreach(string fruit in fruits)
{
Console.WriteLine(fruit);
}
运行上述代码,你会得到输出结果:
There are 3 fruits in the list:
apple
banana
orange
apple
banana
orange
IList接口是ICollection接口的扩展,它定义了在集合中添加、移除和访问元素的方法。同样以List为例,我们可以使用IList接口的Add、Remove和索引器等方法对集合进行操作。下面是一个使用IList接口的实例代码:
List<int> numbers = new List<int>();
numbers.Add(1);
numbers.Add(2);
numbers.Add(3);
Console.WriteLine("The second number is: {0}", numbers[1]);
numbers.RemoveAt(1);
Console.WriteLine("There are {0} numbers in the list:", numbers.Count);
foreach(int number in numbers)
{
Console.WriteLine(number);
}
numbers.Add(1);
numbers.Add(2);
numbers.Add(3);
Console.WriteLine("The second number is: {0}", numbers[1]);
numbers.RemoveAt(1);
Console.WriteLine("There are {0} numbers in the list:", numbers.Count);
foreach(int number in numbers)
{
Console.WriteLine(number);
}
运行上述代码,你会得到输出结果:
The second number is: 2
There are 2 numbers in the list:
1
3
There are 2 numbers in the list:
1
3
IDictionary接口用于表示键值对集合,它定义了添加、移除和访问键值对的方法。以Dictionary为例,它实现了IDictionary接口,可以存储具有唯一键的元素,并通过键来访问对应的值。下面是一个使用Dictionary的实例代码:
Dictionary<string, int> scores = new Dictionary<string, int>();
scores.Add("Tom", 90);
scores.Add("Jerry", 80);
scores.Add("Mickey", 95);
Console.WriteLine("The score of Tom is: {0}", scores["Tom"]);
scores.Remove("Tom");
Console.WriteLine("There are {0} students in the dictionary:", scores.Count);
foreach(var student in scores)
{
Console.WriteLine(student.Key + ": " + student.Value);
}
scores.Add("Tom", 90);
scores.Add("Jerry", 80);
scores.Add("Mickey", 95);
Console.WriteLine("The score of Tom is: {0}", scores["Tom"]);
scores.Remove("Tom");
Console.WriteLine("There are {0} students in the dictionary:", scores.Count);
foreach(var student in scores)
{
Console.WriteLine(student.Key + ": " + student.Value);
}
运行上述代码,你会得到输出结果:
The score of Tom is: 90
There are 2 students in the dictionary:
Jerry: 80
Mickey: 95
There are 2 students in the dictionary:
Jerry: 80
Mickey: 95
IEnumerable接口用于表示可枚举的集合,它定义了一个迭代器的方法。在C#中,所有集合类型都实现了IEnumerable接口,因此可以使用foreach循环来遍历集合中的元素。下面是一个使用IEnumerable接口的实例代码:
List<int> nums = new List<int>() { 1, 2, 3, 4, 5 };
foreach(int num in nums)
{
Console.WriteLine(num);
}
foreach(int num in nums)
{
Console.WriteLine(num);
}
运行上述代码,你会得到输出结果:
1
2
3
4
5
2
3
4
5
通过以上实例代码的讲解,相信你对C#中的集合接口和类型有了更深入的了解。这些集合接口和类型在实际开发中非常常用,掌握它们将大大提高你的开发效率。希望本篇文章能帮助你更好地理解和应用C#中的集合接口和类型。
最后,如果你对python语言还有任何疑问或者需要进一步的帮助,请访问https://www.xin3721.com 本站原创,转载请注明出处:https://www.xin3721.com/ArticlecSharp/c48060.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式