列表中可以存储的元素是否有限制?

发布于 2024-08-11 23:12:05 字数 44 浏览 6 评论 0原文

List 中可以存储的元素是否有限制?或者你可以继续添加元素直到内存不足?

Is there a limit of elements that could be stored in a List ? or you can just keeping adding elements untill you are out of memory ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泛泛之交 2024-08-18 23:12:05

List 的当前实现使用 Int32 everywhere - 为其 Count 属性构造其后备数组,作为索引器及其所有内部操作 - 因此当前理论最大 Int32.MaxValue 项(2^31-12147483647)。

但 .NET 框架也有 2GB 的最大对象大小限制,因此您只能使用单字节项目列表(例如 List)接近项目限制。列表

实际上,在达到这些限制之前,您可能会耗尽连续内存。

The current implementation of List<T> uses Int32 everywhere - to construct its backing array, for its Count property, as an indexer and for all its internal operations - so there's a current theoretical maximum of Int32.MaxValue items (2^31-1 or 2147483647).

But the .NET framework also has a maximum object size limit of 2GB, so you'll only get anywhere near the items limit with lists of single-byte items such as List<byte> or List<bool>.

In practice you'll probably run out of contiguous memory before you hit either of those limits.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文