Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 424 Bytes

File metadata and controls

14 lines (11 loc) · 424 Bytes

Java conventions

Naming conventions
  • Classes start with a capital letter.
  • variables & methods start with a lowercase & use camelCase
  • constants are completely capitalized & you use underscore between words (HI_BYE)
  • package names start with lowercase letter
package p1;
Other conventions
  • " " typically encase a string, whereas ' ' typically encases characters.