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);
相关推荐
咕白m62516 小时前
.NET 环境下 Word 超链接批量提取方案
c#·.net
用户917215619021117 小时前
C# 通信协议增量解析:用状态机处理半包和粘包
c#
小码编匠1 天前
C# 工控上位机必备:数据转换工具类与十个核心模块
后端·c#·.net
唐青枫3 天前
别再乱用 StartNew:C#.NET TaskFactory 任务调度实战详解
c#·.net
Artech4 天前
[MAF预定义的AIContextProvider-03]ChatHistoryMemoryProvider——赋予Agent从经验中学习的能力
ai·c#·agent·memory·maf
Scout-leaf5 天前
C#摸鱼实录——IoC与DI案例详解
c#
咕白m6255 天前
使用 C# 在 Excel 中应用多种字体样式
后端·c#
Artech6 天前
[MAF预定义的AIContextProvider-02]AgentSkillsProvider——将Agent Skills引入MAF
ai·c#·agent·agent skills·maf
2601_962072556 天前
李梦娇常识4600问|题库|打印版
sql·华为od·华为·c#·华为云·.net·harmonyos
m0_547486667 天前
《C#语言程序设计与实践》 全套PPT课件
c语言·c#·c语言程序设计