answersLogoWhite

0

A destructor in C++ is a method of a class that runs when the class is deleted. It performs cleanup of the members of the class that need cleanup, such as deallocation of subobjects referred to by pointers in the class, subobjects which were earlier allocated by a constructor or other method of the class.

User Avatar

Wiki User

15y ago

Still curious? Ask our experts.

Chat with our AI personalities

ViviVivi
Your ride-or-die bestie who's seen you through every high and low.
Chat with Vivi
LaoLao
The path is yours to walk; I am only here to hold up a mirror.
Chat with Lao
FranFran
I've made my fair share of mistakes, and if I can help you avoid a few, I'd sure like to try.
Chat with Fran
More answers

Yes, although there are few practical reasons for doing so. The primary reason is to ensure only one instance of a class exists at all times (a singleton class). However, you must still provide some means of destroying the singleton, typically achieved via a static member function or a friend class or function.

User Avatar

Wiki User

11y ago
User Avatar

No -- it would make no sense to have a static destructor. Static members are local to the class. You cannot destroy a class, only an instance of a class, an object. Objects have no static members.

User Avatar

Wiki User

12y ago
User Avatar

Add your answer:

Earn +20 pts
Q: What are destructors in c plus plus?
Write your answer...
Submit
Still have questions?
magnify glass
imp