C++
Programming and Technical
How can I handle a destructor that fails?
Read Solution (Total 1)
-
- Always follow this rule: Destructors ought never throw an exception. Exception thrown inside a destructor are likely to cause an application to crash. Be safe rather than sorry.
- 6 years agoHelpfull: Yes(0) No(0)
C++ Other Question