Skip to content

Files

Latest commit

author
Naoki Kishida
Oct 16, 2019
7b253c6 · Oct 16, 2019

History

History
executable file
·
12 lines (10 loc) · 228 Bytes

class-naming.md

File metadata and controls

executable file
·
12 lines (10 loc) · 228 Bytes

Java Naming Convention > Class Naming

PascalCase

  • Begin with an uppercase letter
  • Preferably a noun e.g. Car, Bird, MountainBike
  • Avoid acronyms and abbreviations
public class Company {  
    ...
}