Advertisements
Advertisements
प्रश्न
What are the advantages of declaring constructors and destructors under public accessibility?
थोडक्यात उत्तर
उत्तर
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
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?