所以我一直在考虑为我编写的类实现析构函数,但我不确定如何真正释放内存,或者这是否将由垃圾收集处理。
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 次。
我的问题是我应该如何正确处置/销毁这些对象?我不想假设这些是垃圾收集的,但我是实施析构函数的新手。