Advertisements
Advertisements
Question
What are the advantages of declaring constructors and destructors under public accessibility?
Answer in Brief
Solution
When constructor and destructor are declared under public:
- we can initialize the object while declaring it.
- we can explicitly call the constructor.
- we can overload constructors and therefore use multiple constructors to initialize objects automatically.
- we can destroy the objects at the end of the class scope automatically (free unused memory).
However, some C++ compiler and Dev C++ do not allow to declare constructor and destructor under the private section. So it is better to declare constructor and destructor under the public section only.
shaalaa.com
Is there an error in this question or solution?