InterviewSolution
Saved Bookmarks
| 1. |
What Is Constructor ? |
|
Answer» A pseudo-method that creates an object. In the JAVA programming language, constructors are instance METHODS with the same name as their class. Constructors are INVOKED using the NEW KEYWORD. A pseudo-method that creates an object. In the Java programming language, constructors are instance methods with the same name as their class. Constructors are invoked using the new keyword. |
|