c# - 如何在 C# 中处理托管和非托管对象?

标签 c# asp.net destructor dispose

全部。我从来没有使用过析构函数也没有处理过,所以这对我来说是新的。 我的任务是创建一个具有析构函数和处置方法的类,并且具有 UInt64。自动递增的 Id 属性,静态 Dictionary<UInt64,MyClass>必须通过 ID 引用 MyClass 的所有事件 实例.

在搜索了如何正确使用它们之后,这就是我最终做的:

public class MyClass : IDisposable
{
    private static Object Lock = new Object();
    private static Dictionary<UInt64, MyClass> LiveInstances = new Dictionary<UInt64, MyClass>();

    public UInt64 Id { get; private set; }

    public MyClass()
    {
        lock (Lock)
        {
            var newId = IncrementalId();
            if (newId == 0)
            {
                throw new ArgumentException("Reached MAX VAL");
            }
            Id = newId;
            LiveInstances.Add(Id, this);
        }
    }

    ~MyClass()
    {
       CleanUpNativeResources();
    }     

    public void Dispose()
    {
        lock (Lock)
        {
            CleanUpManagedResources();
            CleanUpNativeResources();
            GC.SuppressFinalize(this);
        }
    }

    protected virtual void CleanUpManagedResources()
    {
        LiveInstances.Remove(Id);

    }
    protected virtual void CleanUpNativeResources()
    {

    }

    private static UInt64 IncrementalId()
    {
        for (ulong i = 0; i <= Convert.ToUInt64(LiveInstances.Count) ; i++)
        {
            if (i != UInt64.MaxValue && !LiveInstances.ContainsKey(i + 1))
            {
                return i+1;
            }
        }
        return 0;
    }
}

现在,我的问题是我如何处理对象?无论我是否尝试查找处理对象的示例,我都会找到类似这样的内容:

 // Code to dispose the managed resources of the class
 Console.WriteLine("Object disposed");

提前致谢。

最佳答案

托管资源将在某个时间点由垃圾收集器自动处理。非托管资源类似于文件句柄,通过调用返回必须手动释放的 Windows 句柄的 Windows API 调用获得。您没有任何需要手动处理的东西。 如果您不释放这些句柄,它们将在程序运行期间保持分配状态,但所有具有非托管资源的 .Net 类都会提供一个 Finalizer(见下文)以确保它们将通常在某个时候被释放。

(但如果您正在编写自己的文件处理类而忘记在任何地方释放文件句柄,则文件将保持打开状态直到您的程序退出。)

通常这种非托管资源会在两个地方被释放:

Dispose() 方法。这应该是您处理非托管资源的正常方式。

终结器。这是最后的手段机制。如果一个类有终结器,垃圾收集器在清理死对象时会调用它。如果程序员忘记调用 Dispose(),任何具有非托管资源的类都应该有一个终结器来清理。

使用的基本 Dispose 模式是这样的:

class MyObject : IDisposable
{
    //indicates if dispose has already been called
    //private bool _disposed = false;

    //Finalize method for the object, will call Dispose for us
    //to clean up the resources if the user has not called it
    ~MyObject()
    {
        //Indicate that the GC called Dispose, not the user
        Dispose(false);
    }

    //This is the public method, it will HOPEFULLY but
    //not always be called by users of the class
    public void Dispose()
    {
        //indicate this was NOT called by the Garbage collector
        Dispose(true);

        //Now we have disposed of all our resources, the GC does not
        //need to do anything, stop the finalizer being called
        GC.SupressFinalize(this);
    }

    private void Dispose(bool disposing)
    {
        //Check to see if we have already disposed the object
        //this is necessary because we should be able to call
        //Dispose multiple times without throwing an error
        if (!disposed)
        {
            if (disposing)
            {
                //clean up managed resources
                components.Dispose();
            }

            //clear up any unmanaged resources - this is safe to
            //put outside the disposing check because if the user
            //called dispose we want to also clean up unmanaged
            //resources, if the GC called Dispose then we only
            //want to clean up managed resources
        }
    }
}

关于c# - 如何在 C# 中处理托管和非托管对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33805950/

相关文章:

c# - WCF 服务应该返回普通的旧对象,还是您正在使用的实际类?

c# - Bot 框架在部署时缺少 project.json

c++ - 为什么在 C++ 中不为私有(private)嵌套类调用析构函数?

c++ - C++中的循环链表的析构函数?

c++ - 析构函数调用的顺序是否有原因?

c# - ASP.NET - 嵌套母版页中的 FindControl

c# - 如何使用 Reactive Extensions 使用最大窗口大小来限制事件?

c# - 我是否应该使用 AutoFixture 来测试我的 Onion 的核心元素(它没有依赖项)?

c# - 使用复选框文本值在数据库中执行搜索

C# 系统.FormatException : Input string was not in a correct format