0
What is destructor sign? Why it is used?
What is it and why is that used
6 ответов
+ 2
~
+ 2
destructors are used to release memory when you come out of a program
+ 1
~
0
~
0
destructors are used to free the space occupied by constructors. Even if we do not declare or define a destructor there is a default one.It automatically works out as the curly brace of constructor closes and frees the space occupied by it.
0
~