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);
相关推荐
ITMr.罗1 天前
深入理解EF Core更新机制(开发中因为省事遇到的问题)
服务器·数据库·c#·.net
用户4488466710601 天前
.NET进阶——深入理解委托(3)事件入门
c#·.net
赵庆明老师1 天前
NET 中,你可以使用LINQ 根据指定字段排序
c#·linq
武藤一雄1 天前
C# 万字拆解线程间通讯?
后端·微软·c#·.net·.netcore·多线程
lljss20201 天前
C# 定时器类实现1s定时器更新UI
开发语言·c#
白杨攻城狮1 天前
C# 关于 barierr 心得
开发语言·c#
江沉晚呤时1 天前
延迟加载(Lazy Loading)详解及在 C# 中的应用
java·开发语言·microsoft·c#
专注VB编程开发20年1 天前
C#用API添另静态路由表
c#·静态路由
我是唐青枫1 天前
C# Params Collections 详解:比 params T[] 更强大的新语法
c#·.net
Zhen (Evan) Wang1 天前
从客户端的HTTP 请求到后端 .NET 8 API的整个生命周期 - 处理请求和响应的主要方式
c#·.net