hi,
I am new to java can you tell me
What is Instantiation?
Printable View
hi,
I am new to java can you tell me
What is Instantiation?
Creating a new object with the "new" operator.
See Creating Objects.
int i = 3;
int i : this is declaration...meaning that u declare a new variable or object...
= 3: this is instantiation...meaing that u initialise i with 3...