Feb 19, 2007

Symbian Coding Conventions : Variable Naming Coventions

  • Member variables' names begin with 'i'
  • Arguments' names begin with 'a'
  • Automatics' (local variables) names have no initial letter, but start in lower case
  • Constants' names begin with 'K'
  • Global variables are usually avoided, but when used, their names begin with a capital letter.

No comments: