.Net:这是正确的吗:objSample.dispose() 意味着 objSample = null?

发布于 2024-08-30 10:21:16 字数 100 浏览 2 评论 0原文

只是想知道 objSample.dispose() 等于 objSample = null

事实上,我可以从反汇编程序中得到这些问题的答案吗?如何?

谢谢

Just wanna to know objSample.dispose() is equal to objSample = null

Indeed, can I get answer to such these questions from disassemblers? how?

Thank you

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

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

发布评论

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

评论(1

别在捏我脸啦 2024-09-06 10:21:16

不,处置对象并不意味着将该对象的引用设置为 null。

处置是一种约定,用于在程序员需要时清理资源,而不是等到垃圾收集器决定启动为止。

要回答您的问题,请写下以下内容:

objSample.Dispose();
objSample = null;

No, Disposing an object does not mean setting the reference to that object to null.

Disposing is an convention to clean up resources when the programmer wants it, not to wait untill the garbage collector decides to kick in.

To answer your question, write this:

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