gpt4 book ai didi

c# - 为什么创建新数组会抛出 OutOfMemoryException?

转载 作者:太空狗 更新时间:2023-10-29 23:59:02 25 4
gpt4 key购买 nike

这个抛出一个 OutOfMemoryException

目标框架 .NET 3.5,在 64 位 Windows 2008 R2 Standard 上运行

using System;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
byte[] test = new byte[Int32.MaxValue];
}
}
}

根据文档,数组长度必须是 32 位正整数,但显然这不是唯一需要注意的限制。

为什么在这种情况下会耗尽内存?

最佳答案

那是 2 GB 的内存。 32 位 int 的最大值为 2147483647,转换为兆字节为 2048,即 2 GB。机器实际上可能内存不足。请参阅:Maximum Memory a .NET process can allocate

关于c# - 为什么创建新数组会抛出 OutOfMemoryException?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13727582/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com