gpt4 book ai didi

c# - 当没有剩余内存时,.Net 和 Bitmap 不会被 GC 自动处理

转载 作者:IT王子 更新时间:2023-10-28 23:32:59 26 4
gpt4 key购买 nike

我想知道为位图分配的内存的分配和处置如何在 .NET 中工作。

当我在一个函数的循环中创建大量位图并连续调用它时,它会一直工作,直到某个点位图无法分配内存,给出指定大小的“无效参数”异常。

如果我从 while 到 while 调用垃圾收集器。

使用以下代码,您可以重现错误:

class BitmapObject {
public bool Visible {
get { return enb; }
set { enb = value; }
}
private bool enb;
private Bitmap bmp;
public BitmapObject(int i, bool en)
{
enb = en;
bmp = new Bitmap(i, i);


}
}

class Pool<T> where T : BitmapObject
{
List<T> preallocatedBitmaps = new List<T>();
public void Fill() {
Random r = new Random();
for (int i = 0; i < 500; i++) {
BitmapObject item = new BitmapObject(500, r.NextDouble() > 0.5);
preallocatedBitmaps.Add(item as T);
}
}

public IEnumerable<T> Objects
{
get
{
foreach (T component in this.preallocatedBitmaps)
{
if (component.Visible)
{
yield return (T)component;
}
}


}
}
}

static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
for (int i = 0; i < 10; i++ )
{
Test();

// without this it breaks
//GC.Collect();
//GC.WaitForPendingFinalizers();
}

Console.ReadKey();
}

private static void Test() {
Pool<BitmapObject> pool = new Pool<BitmapObject>();
pool.Fill();

for (int i = 0; i < 100; i++)
{
var visBitmaps = pool.Objects;
// do something
}
}
}

最佳答案

Bitmap 类不可避免地是您必须停止忽略 IDisposable 存在的类。它是一个围绕 GDI+ 对象的小型包装类。 GDI+ 是非托管代码。位图占用非托管内存。当位图很大时,很多。

.NET 垃圾收集器确保使用终结器线程释放非托管系统资源。问题是,只有当您创建足够数量的 托管 对象来触发垃圾回收时,它才会生效。这不适用于 Bitmap 类,您可以在垃圾收集堆的第 0 代填满之前创建数千个。在到达那里之前,您将用完非托管内存。

需要管理您使用的位图的生命周期。当您不再使用 Dispose() 方法时,请调用它。这并不总是黄金解决方案,如果您只是有太多实时位图,您可能需要重新考虑您的方法。下一个解决方案是 64 位操作系统。

关于c# - 当没有剩余内存时,.Net 和 Bitmap 不会被 GC 自动处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5838608/

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