Advertisements
Advertisements
Question
Write any four rules for the constructor function.
Short Answer
Solution
- The constructor name is always the same as the class name.
- They do not have return types, not even void and therefore, they cannot return values.
- They cannot be static or virtual.
- They should be declared in the public section.
- They cannot be inherited, though a derived class can call a base class constructor.
- Like other C++ functions, they can have default arguments.
- We cannot refer to their address.
- An object with a constructor cannot be used as a member of union.
- They make implicit calls to the operators 'new' and 'delete' when memory allocation is required.
- When a constructor is declared for a class, initialization of class objects becomes mandatory since the constructor is invoked automatically when the objects are created.
shaalaa.com
Notes
Students should refer to the answer according to their questions.
Is there an error in this question or solution?