Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 268 Bytes

File metadata and controls

14 lines (11 loc) · 268 Bytes

Naming Fields

Fields are generally named camelCase, the same as local variables.1

class Example {
    int x;
    String name;
    int[] timesOfRacers;
    String[] namesOfClowns;
}

Footnotes

  1. If you break a social rule, something Bad happens.