C#中Array和List的性能比较

using System; using System.Collections.Generic; using System.Diagnostics; namespace TestListArrayPerformance { class Program { static void Main(string[] args) { //const int COUNT = 1000; const int COUNT = 10000000; //Test string's performance //string[] array = new string[COUNT]; // Volumn is predefined //Test integers' performance int[] array = new int[COUNT]; // Volumn is predefined //Test string's performance //List<string> list = new List<string>(); // Volumn is changable //Test integers' performance List<int> list = new List<int>(); // Volumn is changable Console.WriteLine("The count of the elements is: {0}. \n", COUNT); Console.Write("Total time cost for an Array initialization is: "); Stopwatch stopWatch = new Stopwatch(); stopWatch.Start(); for (int i = 0; i < COUNT; i++) { //Test string's performance //array[i] = i.ToString(); //Test integers' performance array[i] = i; } stopWatch.Stop(); Console.Write(stopWatch.ElapsedMilliseconds.ToString() + "ms."); stopWatch.Reset(); stopWatch.Start(); Console.WriteLine("\n"); for (int i = 0; i < COUNT; i++) { //Test string's performance //list.Add(i.ToString()); //Test integers' performance list.Add(i); } stopWatch.Stop(); Console.Write("Total time cost for a List initialization is: "); Console.Write(stopWatch.ElapsedMilliseconds.ToString() + "ms."); stopWatch.Reset(); Console.ReadKey(); } } }



1|0结论

  1. 在数据量庞大的时候List的性能比Array的性能低;
  2. 在数据量较小的时候List的性能和Array的性能基本上差不多;
  3. 在数据量小或者长度不可知的情况下推荐使用List,因为其长度是可变的;
  4. 在数据量大或者数据量的长度明确的情况下推荐使用Array,因为这样可以提高性能。

2|0相关链接

List源码

Array源码




作者:艾孜尔江


__EOF__

本文作者艾孜尔江
本文链接https://www.cnblogs.com/ezhar/p/13637607.html
关于博主:评论和私信会在第一时间回复。或者直接私信我。
版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!
声援博主:如果您觉得文章对您有帮助,可以点击文章右下角推荐一下。您的鼓励是博主的最大动力!
posted @   艾孜尔江  阅读(3328)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 25岁的心里话
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现
点击右上角即可分享
微信分享提示