- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我从阅读中知道the Microsoft documentation IDisposable
的“主要”用途接口(interface)是清理非托管资源。
对我来说,“非托管”意味着诸如数据库连接、套接字、窗口句柄等。但是,我已经看到了 Dispose()
的代码。方法用于释放托管资源,这对我来说似乎是多余的,因为垃圾收集器应该为您处理这些。
例如:
public class MyCollection : IDisposable
{
private List<String> _theList = new List<String>();
private Dictionary<String, Point> _theDict = new Dictionary<String, Point>();
// Die, clear it up! (free unmanaged resources)
public void Dispose()
{
_theList.clear();
_theDict.clear();
_theList = null;
_theDict = null;
}
MyCollection
使用的垃圾收集器释放内存?比平时快吗?
_theList
在上面的代码中包含一百万个字符串,您想立即释放该内存,而不是等待垃圾收集器。上面的代码能做到吗?
最佳答案
Dispose要点是 释放非托管资源。它需要在某个时候完成,否则它们将永远不会被清理。垃圾收集器不知道 怎么样致电 DeleteHandle()
在 IntPtr
类型的变量上,它不知道是否是否需要拨打DeleteHandle()
.
Note: What is an unmanaged resource? If you found it in the Microsoft .NET Framework: it's managed. If you went poking around MSDN yourself, it's unmanaged. Anything you've used P/Invoke calls to get outside of the nice comfy world of everything available to you in the .NET Framework is unmanaged – and you're now responsible for cleaning it up.
public void Cleanup()
要么
public void Shutdown()
但是,此方法有一个标准化名称:
public void Dispose()
甚至创建了一个界面,
IDisposable
,只有一种方法:
public interface IDisposable
{
void Dispose()
}
所以你让你的对象暴露
IDisposable
接口(interface),这样你就保证你已经编写了一个方法来清理你的非托管资源:
public void Dispose()
{
Win32.DestroyHandle(this.CursorFileBitmapIconServiceHandle);
}
你已经完成了。
除了你可以做得更好。
Dispose()
(意味着他们不再计划使用该对象)为什么不摆脱那些浪费的位图和数据库连接?
Dispose()
摆脱这些托管对象的方法:
public void Dispose()
{
//Free unmanaged resources
Win32.DestroyHandle(this.CursorFileBitmapIconServiceHandle);
//Free managed resources too
if (this.databaseConnection != null)
{
this.databaseConnection.Dispose();
this.databaseConnection = null;
}
if (this.frameBufferImage != null)
{
this.frameBufferImage.Dispose();
this.frameBufferImage = null;
}
}
一切都很好,
除了你可以做得更好 !
Dispose()
在你的对象上?然后他们会泄漏一些
非托管 资源!
Note: They won't leak managed resources, because eventually the garbage collector is going to run, on a background thread, and free the memory associated with any unused objects. This will include your object, and any managed objects you use (e.g. the
Bitmap
and theDbConnection
).
Dispose()
,我们仍然可以保存他们的培根!我们仍然有办法为他们调用它:当垃圾收集器最终开始释放(即完成)我们的对象时。
Note: The garbage collector will eventually free all managed objects.When it does, it calls the
Finalize
method on the object. The GC doesn't know, orcare, about your Dispose method.That was just a name we chose fora method we call when we want to getrid of unmanaged stuff.
Finalize()
来做到这一点。方法。
Note: In C#, you don't explicitly override the
Finalize()
method.You write a method that looks like a C++ destructor, and thecompiler takes that to be your implementation of theFinalize()
method:
~MyObject()
{
//we're being finalized (i.e. destroyed), call Dispose in case the user forgot to
Dispose(); //<--Warning: subtle bug! Keep reading!
}
但是该代码中有一个错误。你看,垃圾收集器在
上运行后台线程 ;您不知道销毁两个对象的顺序。完全有可能在您的
Dispose()
代码,
托管 您试图摆脱的对象(因为您想提供帮助)不再存在:
public void Dispose()
{
//Free unmanaged resources
Win32.DestroyHandle(this.gdiCursorBitmapStreamFileHandle);
//Free managed resources too
if (this.databaseConnection != null)
{
this.databaseConnection.Dispose(); //<-- crash, GC already destroyed it
this.databaseConnection = null;
}
if (this.frameBufferImage != null)
{
this.frameBufferImage.Dispose(); //<-- crash, GC already destroyed it
this.frameBufferImage = null;
}
}
所以你需要的是
Finalize()
的方法告诉
Dispose()
应该
不碰任何托管 资源(因为它们可能不再存在),同时仍然释放非托管资源。
Finalize()
和
Dispose()
双方都致电
第三个 (!) 方法;如果您从
Dispose()
调用它,则传递一个 bool 值说明(与
Finalize()
相反),这意味着释放托管资源是安全的。
Dispose(Boolean)
:
protected void Dispose(Boolean disposing)
但更有用的参数名称可能是:
protected void Dispose(Boolean itIsSafeToAlsoFreeManagedObjects)
{
//Free unmanaged resources
Win32.DestroyHandle(this.CursorFileBitmapIconServiceHandle);
//Free managed resources too, but only if I'm being called from Dispose
//(If I'm being called from Finalize then the objects might not exist
//anymore
if (itIsSafeToAlsoFreeManagedObjects)
{
if (this.databaseConnection != null)
{
this.databaseConnection.Dispose();
this.databaseConnection = null;
}
if (this.frameBufferImage != null)
{
this.frameBufferImage.Dispose();
this.frameBufferImage = null;
}
}
}
然后你改变了
IDisposable.Dispose()
的实现方法:
public void Dispose()
{
Dispose(true); //I am calling you from Dispose, it's safe
}
和你的终结者:
~MyObject()
{
Dispose(false); //I am *not* calling you from Dispose, it's *not* safe
}
Note: If your object descends from an object that implements
Dispose
, then don't forget to call their base Dispose method when you override Dispose:
public override void Dispose()
{
try
{
Dispose(true); //true: safe to free managed resources
}
finally
{
base.Dispose();
}
}
一切都很好,
除了你可以做得更好 !
Dispose()
在您的对象上,那么一切都已清理干净。稍后,当垃圾收集器出现并调用 Finalize 时,它将调用
Dispose
再次。
Dispose()
,您将再次尝试处理它们!
Dispose
。在垃圾对象引用上。但这并没有阻止一个微妙的错误潜入。
Dispose()
时: handle
CursorFileBitmapIconServiceHandle 被摧毁。稍后当垃圾收集器运行时,它会再次尝试销毁同一个句柄。
protected void Dispose(Boolean iAmBeingCalledFromDisposeAndNotFinalize)
{
//Free unmanaged resources
Win32.DestroyHandle(this.CursorFileBitmapIconServiceHandle); //<--double destroy
...
}
解决这个问题的方法是告诉垃圾收集器它不需要费心完成对象——它的资源已经被清理干净,不需要更多的工作。您可以通过拨打
GC.SuppressFinalize()
来做到这一点。在
Dispose()
方法:
public void Dispose()
{
Dispose(true); //I am calling you from Dispose, it's safe
GC.SuppressFinalize(this); //Hey, GC: don't bother calling finalize later
}
现在用户已经拨打了
Dispose()
, 我们有:
Object.Finalize
的文档说:
The Finalize method is used to perform cleanup operations on unmanaged resources held by the current object before the object is destroyed.
IDisposable.Dispose
:
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
It's your choice! But choose
Dispose
.
~MyObject()
{
//Free unmanaged resources
Win32.DestroyHandle(this.CursorFileBitmapIconServiceHandle);
//A C# destructor automatically calls the destructor of its base class.
}
问题是你不知道垃圾收集器什么时候会完成你的对象。您未管理、不需要、未使用的 native 资源将一直存在,直到垃圾收集器最终运行。然后它会调用你的终结器方法;清理非托管资源。
的文档Object.Finalize 指出这一点:
The exact time when the finalizer executes is undefined. To ensure deterministic release of resources for instances of your class, implement a Close method or provide a
IDisposable.Dispose
implementation.
Dispose
的优点清理非托管资源;您可以了解和控制何时清理非托管资源。它们的破坏是“确定性的”。
It is therefore very difficult indeed to write a correct finalizer,and the best advice I can give you is to not try.
关于c# - 正确使用 IDisposable 接口(interface),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/538060/
这个问题已经有答案了: How to do case insensitive string comparison? (23 个回答) 已关闭 3 年前。 用户在我的输入栏中写入“足球”,然后执行第 6
啊,不习惯 javascript 中的字符串。 character_id= + id + correct= + correctOrIncorrect 这就是我需要制作成字符串的内容。如果您无法猜测字符
$(function() { var base_price = 0; CalculatePrice(); $(".math1").on('change', function(e) { Calc
我找不到任何文章回答问题:将Spinnaker部署到Spinnaker将管理的同一Kubernetes集群是否安全/正确?我主要是指生产,HA部署。 最佳答案 我认为Spinnaker和Kuberne
我正在使用MSVC在Windows上从源代码(官方源代码发布,而不是从仓库中)构建Qt5(Qt 5.15.0)。 我正在设置环境。变量,依赖项等,然后运行具有1600万个选项的configure,最后
我需要打印一个包含重复单词的数组。我的数组已经可以工作,但我不知道如何正确计算单词数。我已经知道,当我的索引计数器 (i) 为 49 时,并且当 (i) 想要计数到 50 时,我会收到错误,但我不知道
我正在遵循一个指南,该指南允许 Google map 屏幕根据屏幕尺寸禁用滚动。我唯一挣扎的部分是编写一个代码,当我手动调整屏幕大小时动态更改 True/False 值。 这是我按照说明操作的网站,但
我有一个类“FileButton”。它的目的是将文件链接到 JButton,FileButton 继承自 JButton。子类继承自此以使用链接到按钮的文件做有用的事情。 JingleCardButt
我的 friend 数组只返回一个数字而不是所有数字。 ($myfriends = 3) 应该是…… ($myfriends = 3 5 7 8 9 12). 如果我让它进入 while 循环……整个
这个问题在这里已经有了答案: Is there a workaround to make CSS classes with names that start with numbers valid?
我正在制作一个 JavaScript 函数,当调整窗口大小时,它会自动将 div 的大小调整为与窗口相同的宽度/高度。 该功能非常基本,但我注意到在调整窗口大小时出现明显的“绘制”滞后。在 JS fi
此问题的基本视觉效果可在 http://sevenx.de/demo/bootstrap-carousel/inc.carousel/tabbed-slider.html 获得。 - 如果你想看一看。
我明白,如果我想从函数返回一个字符串文字或一个数组,我应该将其声明为静态的,这样当被调用的函数被返回时,内容就不会“消亡”。 但我的问题是,当我在函数内部使用 malloc 分配内存时会怎样? 在下面
在 mySQL 数据库中存储 true/false/1/0 值最合适(读取数据消耗最少)的数据字段是什么? 我以前使用过一个字符长的 tinyint,但我不确定它是否是最佳解决方案? 谢谢! 最佳答案
我想一次读取并处理CSV文件第一行中的条目(例如打印)。我假设使用Unix风格的\n换行符,没有条目长度超过255个字符,并且(现在)在EOF之前有一个换行符。这意味着它是fgets()后跟strto
所以,我们都知道 -1 > 2u == true 的 C/C++ 有符号/无符号比较规则,并且我有一种情况,我想有效地实现“正确”比较。 我的问题是,考虑到人们熟悉的尽可能多的架构,哪种方法更有效。显
**摘要:**文章的标题看似自相矛盾。 本文分享自华为云社区《Java异常处理:如何写出“正确”但被编译器认为有语法错误的程序》,作者: Jerry Wang 。 文章的标题看似自相矛盾,然而我在“正
我有一个数据框,看起来像: dataDemo % mutate_each(funs(ifelse(. == '.', REF, as.character(.))), -POS) # POS REF
有人可以帮助我使用 VBScript 重新格式化/正确格式化带分隔符的文本文件吗? 我有一个文本文件 ^分界如下: AGREE^NAME^ADD1^ADD2^ADD3^ADD4^PCODE^BAL^A
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我是一名优秀的程序员,十分优秀!