<<< Object Constructors | Index | The new keyword in Java >>> |
Any time when the object is created. For example,
Planet saturn = new Planet(); // Java code
Memory is allocated before constructor is invoked.
Programmer is responsible for initialization of the object instance.
<<< Object Constructors | Index | The new keyword in Java >>> |