Thread: Instantiation
View Single Post
  #3 (permalink)  
Old 12-05-2007, 06:56 PM
vortex vortex is offline
Member
 
Join Date: Dec 2007
Posts: 5
vortex is on a distinguished road
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...
Reply With Quote