我想知道在这种情况下何时调用析构函数,是否在主UI线程上调用析构函数?

假设我有以下代码,何时将调用析构函数,它会等到我完成所有函数调用之后?

private void Foo()
  {
  MyObject myObj = new MyObject();
  DoSomeFunThingsWithMyObject(myObj);

  myObj = new MyObject(); //is the destructor for the first instance called now?
  DoLongOminousFunctionality(myObj);
  }
  //Or will it be called after the DoLongOminousFunctionality?

如果线程在myObj = new MyObject()处中断,或者Destructor调用一直等到线程空闲,这只是我感兴趣的事情。

谢谢你提供的详情。

最佳答案

当垃圾收集器决定必须清理一些旧对象时,将调用析构函数。您不能依靠.NET中的析构函数执行时间

取而代之的是,如果要在不需要某些资源时清理它们(特别是当您有任何非托管资源(例如TCP连接,SQL连接等)时),则应使用Dispose()。

参见Implementing a Dispose Method

关于c# - 在这种情况下我的破坏者什么时候叫? (C#),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1259628/

10-14 16:47