instantiate java code example

Example 1: object instantiation vs construction

Object Creation (Instantiation) and Initialization (Construction) are 
different things in Java. Construction follows object creation.
Object Creation is the process to create the object in memory and 
returning its handler.
Java provides “new” keyword for object creation.
Initialization is the process of setting the initial/default values 
to the members.
Constructor is used for this purpose. If we don't provide any constructor, 
Java provides one default implementation to set the default values according 
to the member data types.

Example 2: meaning of instantiated in java

Movie obj = new Movie();

Example 3: instantiate a class java

When you create an object, you are creating an instance of a class, therefore "instantiating" a class

Tags:

Misc Example