Site hosted by Angelfire.com: Build your free website today!
 

Classes and Objects?

An object class describes the common features of objects that belong to the class.

An object is the implementation or realization of a class (blueprint).

Instantiation

The use of a class definition to create an object. To instantiate an object with Java, use the new keyword on the class's constructor.

Dog darkie = new Dog();