Naming Fields
Fields are generally named camelCase
, the same as local variables.1
class Example {
int x;
String name;
int[] timesOfRacers;
String[] namesOfClowns;
}
1
If you break a social rule, something Bad happens.