Fields
This lesson will go into the details of the fields of a class.
We'll cover the following...
Java fields
Java fields are actually the data members inside a class. For instance, in a class representing Car, the Car class might contain the following fields:
topSpeedtotalSeatsfuelCapacity
The Java class could be ...
Ask