Here is an example:
public class Animal{
//constructor
//properties
//methods
}
The above is just a blueprint.
In another class you might make an instance of the Animal, or an object:
Animal myPet = new Animal();
The object is called myAnimal. It is a reference to an Animal class.
Let's try...