Implementing IDisposable correctly(正确实施 IDisposable)
问题描述
在我的类中,我实现 IDisposable
如下:
In my classes I implement IDisposable
as follows:
public class User : IDisposable
{
public int id { get; protected set; }
public string name { get; protected set; }
public string pass { get; protected set; }
public User(int UserID)
{
id = UserID;
}
public User(string Username, string Password)
{
name = Username;
pass = Password;
}
// Other functions go here...
public void Dispose()
{
// Clear all property values that maybe have been set
// when the class was instantiated
id = 0;
name = String.Empty;
pass = String.Empty;
}
}
在 VS2012 中,我的代码分析说要正确实现 IDisposable,但我不确定我在这里做错了什么.
具体文字如下:
In VS2012, my Code Analysis says to implement IDisposable correctly, but I'm not sure what I've done wrong here.
The exact text is as follows:
CA1063 正确实现 IDisposable 在用户"上提供可覆盖的 Dispose(bool) 实现或将类型标记为密封.对 Dispose(false) 的调用应该只清理本机资源.对 Dispose(true) 的调用应该清理托管资源和本机资源.stman User.cs 10
CA1063 Implement IDisposable correctly Provide an overridable implementation of Dispose(bool) on 'User' or mark the type as sealed. A call to Dispose(false) should only clean up native resources. A call to Dispose(true) should clean up both managed and native resources. stman User.cs 10
供参考:CA1063:正确实现 IDisposable
我已经通读了这个页面,但恐怕我不太明白这里需要做什么.
I've read through this page, but I'm afraid I don't really understand what needs to be done here.
如果有人能用更通俗的语言解释问题是什么和/或应该如何实现 IDisposable
,那真的很有帮助!
If anyone can explain in more layman's terms what the problem is and/or how IDisposable
should be implemented, that will really help!
推荐答案
这将是正确的实现,尽管我在您发布的代码中看不到您需要处理的任何内容.您只需要在以下情况下实现 IDisposable
:
This would be the correct implementation, although I don't see anything you need to dispose in the code you posted. You only need to implement IDisposable
when:
- 您有非托管资源
- 你坚持引用那些本身就是一次性的东西.
您发布的代码中的任何内容都不需要处理.
Nothing in the code you posted needs to be disposed.
public class User : IDisposable
{
public int id { get; protected set; }
public string name { get; protected set; }
public string pass { get; protected set; }
public User(int userID)
{
id = userID;
}
public User(string Username, string Password)
{
name = Username;
pass = Password;
}
// Other functions go here...
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if (disposing)
{
// free managed resources
}
// free native resources if there are any.
}
}
这篇关于正确实施 IDisposable的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:正确实施 IDisposable


基础教程推荐
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01