.Net:这是正确的吗:objSample.dispose() 意味着 objSample = null?
只是想知道 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,处置对象并不意味着将该对象的引用设置为 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: