class A;
A a;
while(true)
{}
in this case, there is a while(true), now if I close the console, the destructor of class A doesn't be called automatically?
A a;
while(true)
{}
in this case, there is a while(true), now if I close the console, the destructor of class A doesn't be called automatically?
