Skip to content

Latest commit

 

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 {  
    ...
}