C#List <>我应该在删除项目时降低容量吗?

前端之家收集整理的这篇文章主要介绍了C#List <>我应该在删除项目时降低容量吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个List容器,最开始可能包含100,000个项目.当程序运行时,此列表将慢慢清空,我是否应该在清空列表时更改容量?

我做了一些测试,执行时间似乎是一样的,但降低列表容量有多少开销?我可以找到很多关于增加容量的信息,但没有太多关于降低容量的信息.

解决方法

除非你的内存量非常低,否则这是一个微优化.

通常,无需更改List<>的容量.

TrimExcess方法文档:

This method can be used to minimize a collection’s memory overhead if no new elements will be added to the collection. The cost of reallocating and copying a large List<T> can be considerable,however,so the TrimExcess method does nothing if the list is at more than 90 percent of capacity. This avoids incurring a large reallocation cost for a relatively small gain.

原文链接:https://www.f2er.com/c/115964.html

猜你在找的C&C++相关文章