C# List集合

一、简介

List是一种泛型集合类,用于存储一组相同类型的元素

二、使用

1、创建List

  • 创建List对象时,需要指定集合中元素的类型
csharp 复制代码
List<int> ints = new List<int>();

List<string> strings = new List<string>();

2、添加元素

2.1 使用Add()方法添加

csharp 复制代码
List<int> ints = new List<int>();
ints.Add(1);
ints.Add(2);
ints.Add(3);

2.2 使用AddRange()方法添加

csharp 复制代码
List<int> ints = new List<int>();
ints.AddRange(1,2,3);

3、删除元素

3.1 删除指定元素

  • Remove 方法用于删除集合中的指定元素,如果集合中中存在多个相同的元素,只会删除第一个
csharp 复制代码
List<int> ints = new List<int>();
ints.AddRange(1, 2, 3, 1, 2, 3);
ints.Remove(1);
  • RemoveAll 方法用于删除集合中所有匹配到的元素
csharp 复制代码
List<int> ints = new List<int>();
ints.AddRange(1, 2, 3, 1, 2, 3);
ints.RemoveAll(x => x == 1);

3.2 删除指定索引

  • RemoveAt 方法用于删除集合中指定索引位置的元素,索引序号从零开始
csharp 复制代码
//此时会删除列表中索引为2的元素 3
List<int> ints = new List<int>();
ints.AddRange(1, 2, 3, 1, 2, 3);
ints.RemoveAt(2);
  • RemoveRange 方法用于删除集合中从指定索引位置开始,指定长度的元素,索引序号从零开始
csharp 复制代码
//此时会从列表中索引为0的元素开始删除,删除2个元素,即1、2会被删除
List<int> ints = new List<int>();
ints.AddRange(1, 2, 3, 1, 2, 3);
ints.RemoveRange(0, 2);

3.3 清空集合

  • Clear 方法用于清空整个集合
csharp 复制代码
//此时会删除集合中的所有元素
List<int> ints = new List<int>();
ints.AddRange(1, 2, 3, 1, 2, 3);
ints.Clear();

4、遍历集合

4.1 for 循环

  • 依次输出集合中的元素
csharp 复制代码
List<int> ints = new List<int>();
ints.AddRange(1, 2, 3, 1, 2, 3);
for (int i = 0; i < ints.Count; i++)
{
    Console.WriteLine(ints[i]);
}

4.2 foreach 循环

  • 依次输出集合中的元素
csharp 复制代码
List<int> ints = new List<int>();
ints.AddRange(1, 2, 3, 1, 2, 3);
foreach (int num in ints)
{
    Console.WriteLine(num);
}

5、常用方法

5.1 Count

csharp 复制代码
//获取集合中元素的个数,此时结果为6
List<int> ints = new List<int>() { 1, 2, 3, 4, 5, 6 };
ints.Count();

5.2 Sort

csharp 复制代码
//对集合中的元素进行排序,默认从小到大
List<int> ints = new List<int>() { 1, 2, 3, 4, 5, 6 };
ints.Sort();

5.3 Reverse

csharp 复制代码
//反转集合中的元素
List<int> ints = new List<int>() { 1, 2, 3, 4, 5, 6 };
ints.Reverse();

5.4 Contains

csharp 复制代码
//判断集合中是否包含某元素
List<int> ints = new List<int>() { 1, 2, 3, 4, 5, 6 };
bool b = ints.Contains(5);

5.5 IndexOf

csharp 复制代码
//获取集合中指定元素的索引,不存在则为-1
List<int> ints = new List<int>() { 1, 2, 3, 4, 5, 6 };
int index = ints.IndexOf(5);
相关推荐
星河队长4 小时前
C#实现智能提示输入,并增色显示
开发语言·c#
海木漄5 小时前
C# 内存是绝对自动清理吗?
开发语言·c#
我是唐青枫5 小时前
C#.NET PeriodicTimer 深入解析:高效异步定时器的正确打开方式
c#·.net
技术支持者python,php6 小时前
ModbusRtc与ModbusTCP,esp32
c#
咕白m6256 小时前
如何用 C# 将 Excel 文件转换为 HTML 格式?
c#·.net
weixin_307779137 小时前
C#程序实现将Teradata的存储过程转换为Amazon Redshift的pgsql的存储过程
数据库·c#·云计算·运维开发·aws
是萝卜干呀7 小时前
Backend - HTTP请求的常用返回类型(asp .net core MVC)
http·c#·.netcore·iactionresult
错把套路当深情7 小时前
Kotlin List扩展函数使用指南
开发语言·kotlin·list
爱吃小胖橘16 小时前
Unity资源加载模块全解析
开发语言·unity·c#·游戏引擎