Advertisements
Advertisements
Question
What is meant by a constructor?
Short Answer
Solution
A constructor is a member method with the same name as the class. It initializes data members or instance variables and creates class objects.
Example: Car ob = new Car();
The statement invokes the Car class's default constructor.
shaalaa.com
Is there an error in this question or solution?