当前位置: 首页 > news >正文

C# 集合全面指南:种类、遍历、用法与注意事项

一、C# 集合概述

C# 中的集合是用于存储和管理一组相关对象的特殊类,它们提供了比数组更强大的功能,如动态大小调整、排序、搜索等。

二、集合的主要种类

1.非泛型集合 (System.Collections)

// 已过时,不推荐在新项目中使用 ArrayList list = new ArrayList(); list.Add(1); // 可以添加任何类型 list.Add("string"); // 类型不安全

2.泛型集合 (System.Collections.Generic)-推荐使用

列表类集合
// List<T> - 最常用的动态数组 List<string> fruits = new List<string> { "Apple", "Banana", "Orange" }; fruits.Add("Mango"); fruits.Remove("Banana"); // LinkedList<T> - 双向链表 LinkedList<int> numbers = new LinkedList<int>(); numbers.AddLast(1); numbers.AddFirst(0); // ObservableCollection<T> - 支持数据绑定和通知 ObservableCollection<string> items = new ObservableCollection<string>(); items.CollectionChanged += (sender, e) => { Console.WriteLine("集合已更改"); };
字典类集合
// Dictionary<TKey, TValue> - 哈希表实现的键值对 Dictionary<string, int> ages = new Dictionary<string, int> { ["Alice"] = 25, ["Bob"] = 30 }; ages["Charlie"] = 28; // SortedDictionary<TKey, TValue> - 基于二叉搜索树的有序字典 SortedDictionary<int, string> sortedDict = new SortedDictionary<int, string>(); // ConcurrentDictionary<TKey, TValue> - 线程安全的字典 ConcurrentDictionary<string, int> concurrentDict = new ConcurrentDictionary<string, int>();
队列和栈
// Queue<T> - 先进先出(FIFO) Queue<string> queue = new Queue<string>(); queue.Enqueue("First"); queue.Enqueue("Second"); string firstItem = queue.Dequeue(); // Stack<T> - 后进先出(LIFO) Stack<int> stack = new Stack<int>(); stack.Push(1); stack.Push(2); int topItem = stack.Pop();
集合类
// HashSet<T> - 不包含重复元素的高性能集合 HashSet<int> uniqueNumbers = new HashSet<int> { 1, 2, 2, 3 }; // 结果: 1, 2, 3 // SortedSet<T> - 有序的不重复集合 SortedSet<string> sortedSet = new SortedSet<string>(); // ReadOnlyCollection<T> - 只读集合包装器 IReadOnlyList<string> readOnlyList = fruits.AsReadOnly();

不可变集合 (System.Collections.Immutable)

// 线程安全且不可变的集合 ImmutableList<string> immutableList = ImmutableList.Create("A", "B", "C"); ImmutableDictionary<string, int> immutableDict = ImmutableDictionary.Create<string, int>();

三、集合的遍历方式

1.foreach 循环 (推荐)

foreach (var fruit in fruits) { Console.WriteLine(fruit); } // 遍历字典 foreach (KeyValuePair<string, int> kvp in ages) { Console.WriteLine($"{kvp.Key}: {kvp.Value}"); }

2.for 循环 (适用于需要索引的情况)

for (int i = 0; i < fruits.Count; i++) { Console.WriteLine($"索引 {i}: {fruits[i]}"); }

四、常见用法示例

1.集合初始化

// 多种初始化方式 List<int> numbers1 = new List<int> { 1, 2, 3 }; List<int> numbers2 = new() { 1, 2, 3 }; // C# 9.0 var numbers3 = new List<int> { 1, 2, 3 }; // 字典初始化 var dict1 = new Dictionary<string, int> { { "Alice", 25 }, { "Bob", 30 } }; var dict2 = new Dictionary<string, int> { ["Alice"] = 25, ["Bob"] = 30 };

2.集合操作

// 添加元素 fruits.Add("Grape"); fruits.AddRange(new[] { "Peach", "Pear" }); fruits.Insert(1, "Lemon"); // 删除元素 fruits.Remove("Apple"); fruits.RemoveAt(0); fruits.RemoveAll(f => f.StartsWith("A")); // 查找元素 bool hasApple = fruits.Contains("Apple"); int index = fruits.IndexOf("Banana"); var apple = fruits.Find(f => f == "Apple"); // 排序 fruits.Sort(); fruits.Sort((x, y) => x.Length.CompareTo(y.Length)); // 转换数组 string[] fruitArray = fruits.ToArray(); List<string> fruitList = fruitArray.ToList();

3.性能优化操作

// 预设容量提升性能 List<string> largeList = new List<string>(10000); // 批量操作 List<int> source = Enumerable.Range(1, 10000).ToList(); List<int> destination = new List<int>(source.Count); destination.AddRange(source);

五、重要注意事项

1.集合选择指南

选择原则: - 需要快速随机访问 → List<T> - 频繁插入/删除 → LinkedList<T> - 键值对存储 → Dictionary<TKey, TValue> - 需要排序 → SortedDictionary<TKey, TValue> - 去重 → HashSet<T> - 线程安全 → ConcurrentBag/Queue/Stack/Dictionary - 只读 → ReadOnlyCollection<T> - 不可变 → ImmutableList/Dictionary

2.遍历时修改集合的陷阱

// 遍历时直接修改会抛出InvalidOperationException foreach (var fruit in fruits) { if (fruit == "Apple") fruits.Remove(fruit); // 运行时错误! } // 正确做法1:使用ToArray()副本 foreach (var fruit in fruits.ToArray()) { if (fruit == "Apple") fruits.Remove(fruit); } // 正确做法2:使用for循环反向遍历 for (int i = fruits.Count - 1; i >= 0; i--) { if (fruits[i] == "Apple") fruits.RemoveAt(i); } // 正确做法3:先标记后删除 var itemsToRemove = new List<string>(); foreach (var fruit in fruits) { if (fruit == "Apple") itemsToRemove.Add(fruit); } foreach (var item in itemsToRemove) { fruits.Remove(item); }

3.字典使用注意事项

Dictionary<string, int> dict = new Dictionary<string, int>(); // 错误:访问不存在的键 int value = dict["nonexistent"]; // KeyNotFoundException // 正确:使用TryGetValue if (dict.TryGetValue("Alice", out int age)) { Console.WriteLine(age); } // 正确:使用ContainsKey检查 if (dict.ContainsKey("Alice")) { value = dict["Alice"]; } // 字典键的自定义类型需要正确实现GetHashCode和Equals public class Person { public string Name { get; set; } public override bool Equals(object obj) => obj is Person other && Name == other.Name; public override int GetHashCode() => Name?.GetHashCode() ?? 0; }

4.性能注意事项

// List<T>的容量管理 List<int> list = new List<int>(); for (int i = 0; i < 1000; i++) { list.Add(i); // 多次重新分配内存 // 如果知道大小,预设容量 List<int> optimizedList = new List<int>(1000); } // HashSet<T> vs List<T>的Contains性能 HashSet<string> hashSet = new HashSet<string>(); // O(1) List<string> normalList = new List<string>(); // O(n)

5.线程安全

// 非线程安全 List<string> unsafeList = new List<string>(); // 使用锁 object lockObj = new object(); lock (lockObj) { unsafeList.Add("item"); } // 使用并发集合 ConcurrentBag<string> safeBag = new ConcurrentBag<string>(); safeBag.Add("item");

6.内存管理

// 及时清理不再使用的集合 List<byte[]> largeData = new List<byte[]>(); // 使用后清理 largeData.Clear(); largeData.TrimExcess(); // 释放多余容量 // 使用using语句处理需要释放资源的集合 using (BlockingCollection<int> collection = new BlockingCollection<int>()) { // 使用集合 }

7.空值处理

// 处理可能的null集合 List<string> possibleNullList = GetList(); var count = possibleNullList?.Count ?? 0; // 安全访问 // 使用空集合代替null public List<string> GetItems() { return new List<string>(); // 而不是返回null }

六、总结

  1. 优先使用泛型集合,避免非泛型集合

  2. 根据场景选择合适的集合类型

  3. 遍历时避免修改集合内容

  4. 合理预设集合容量提升性能

  5. 及时释放不再使用的集合

http://www.cnnetsun.cn/news/175652.html

相关文章:

  • Excalidraw实现KANO模型:需求优先级排序
  • 基于Java+大数据+SSMB站数据分析可视化系统(源码+LW+调试文档+讲解等)/B站数据可视化/B站数据分析/B站分析系统/数据可视化系统/数据分析系统/B站数据平台/B站可视化工具
  • 基于Python+大数据+SSMCBA球员数据可视化分析系统(源码+LW+调试文档+讲解等)/CBA球员数据展示系统/CBA球员数据统计系统/CBA球员数据分析平台/篮球数据可视化分析系统
  • Excalidraw导出PDF注意事项:格式保持完整
  • 【C++】优选算法必修篇之双指针实战:移动零 复写零
  • 【C++】继承深度解析:继承方式和菱形虚拟继承的详解
  • Excalidraw背景设置:更换画布颜色或图片
  • Excalidraw深度测评:为什么它成技术团队首选白板工具?
  • 笨人小白的温故知新——排序(3)
  • 基于python的RSA加密算法软件的研究设计(源码+文档)
  • Excalidraw界面原型设计:产品经理快速出稿方案
  • Excalidraw价值流图:精益生产流程优化
  • 嵌入式多线程从“能跑“到“稳定“的关键一步!
  • 【空间辨识】一致模态指标与模态参与因子的随机子空间辨识研究(Matlab代码实现)
  • 基于Java+SSM+SSM线上管理系统(源码+LW+调试文档+讲解等)/线上管理平台/在线管理系统/线上管理软件/网络管理系统/线上办公系统
  • 分层模糊系统:梯度下降与递推最小二乘法联合辨识研究(Matlab代码实现)
  • 人机差异的核心
  • Excalidraw暗黑模式设置:夜间使用的护眼方案
  • 精品UI知识付费系统源码 响应式视频教程知识付费软件下载网站模板
  • CentOS 7 x86系统安装EMQX 【kaki备忘录】
  • 文献综述:近年“知识工程(Knowledge Engineering)与知识库/知识图谱建设(KB/KG)”研究脉络与展望
  • Excalidraw监控指标采集:Prometheus+Grafana集成
  • 【自动驾驶基础】LDM(Latent Diffusion Model) 要点总结
  • 【FreeRTOS实战】互斥锁专题:从理论到STM32应用题
  • STM32学习——AD单通道AD多通道
  • 基于Spring Boot的农产品销售系统的设计与实现毕设源码
  • 基于Spring Boot的流浪动物救助平台的设计与实现毕业设计
  • 备份恢复-Cordovaopenharmony本地安全方案
  • 创建目标模块 Cordova 与 OpenHarmony 混合开发实战
  • 解决MQ消息丢失问题的5种方案