Examples of class and object
Object Reference : Doll MyDoll; ;
Object Instantiated: MyDoll = new Doll( );
Semantics (meaning) of “new” : create an object of the class
specified and return its reference.
Object References : Rose YourRose, HerRose;
Object Instantiated : YourRose = new Rose();
One More Object Instantiated: HerRose = new Rose();