class identifier;
Also remember that you use new to allocate the memory for an object, that using new with primitives is a syntax error, and it is optional for objects of class String. For all other classes, using new is a required step, so you will need to remember to code this extra step for all other classes.
Note: From now on when we discuss how class objects work, we will just use the term objects, with the understanding that we are not talking about primitives or String objects.
When you actually want a car, you have to declare it. You can declare multiple cars, if your program needs to. You also need to create each car (instantiate it). Below is a small example.
Example Declaration with the Car Class
Car miata = new Car();
Car vwBug = new Car();