A class is not an object.
(but it's used to construct them)
A class is a blue print for an object,it tells the virtual machine how to make an object of that particular type. Each object made from that class can have its own values for the instance variables of that class. For example, you might use the Button class to make dozens of different buttons,and each button might have its own color,size,shape,lable ,and so on.