所以我一直在研究为我编写的类实现析构函数,但我不确定如何真正释放内存,或者这是否会由垃圾收集处理。
class AutomatedTest
{
public bool testComplete = false;
public bool testStopRequest = false;
public List<Command> commandList = new List<Command>();
private bool loggingEnabled = false;
...
public AutomatedTest(TestList testToCreate)
{
// Create a list of Command objects and add them to the list
}
}
类的使用方法:
for(int numTests = 0; numTests < 20; numTests++)
{
AutomatedTest test1 = new AutomatedTest(TestList._1DayTest);
RunAutoTest(test1);
AutomatedTest test2 = new AutomatedTest(TestList._2DayTest);
RunAutoTest(test2);
AutomatedTest test3 = new AutomatedTest(TestList._3DayTest);
RunAutoTest(test3);
AutomatedTest test4 = new AutomatedTest(TestList._4DayTest);
RunAutoTest(test4);
}
因此创建并运行了 4 个对象,并执行了 20 次。
我的问题是我应该如何正确处置/销毁这些对象?我不想假设这些是垃圾收集,但我是实现析构函数的新手。
最佳答案
只要您不使用任何实现 IDisposable 的对象,您就不必手动处理或销毁。
关于c# - 正确使用析构函数c#,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10356669/