C++
Programming and Technical
Can I overload the destructor for my class?
Read Solution (Total 1)
-
- It is impossible to overload a destructor in C++. By the IEEE C++ definition, a destructor has no return type and its parameter count is zero.
- 6 years agoHelpfull: Yes(0) No(0)
C++ Other Question