InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by Constructor? |
|
Answer» Constructor gets invoked when a new object is created. Every class has a constructor. If we do not explicitly write a constructor for a class the java compiler builds a default constructor for that class. |
|