WHen you have a class like Object this is a blueprint of what all objects are like an instance of a class (instance data) is a particular variable of this type which has state you create instances in several ways but essentially they all boil down to:
Object object = new Object();
We have created an instance of the Object class called object by using the new operator and the () means we are using the default constructor.
Does this make more sense now?