Programming Naming Conventions

De Transport
Révision de 12 août 2012 à 18:11 par NicolasSaunier (discuter | contributions) (Page créée avec « I tend to favour the following rules, as can be seen in the Traffic Intelligence project * UpperCamelCase for classes * … »)

(diff) ← Version précédente | Voir la version courante (diff) | Version suivante → (diff)

I tend to favour the following rules, as can be seen in the [Intelligence project]

  • UpperCamelCase for classes
  • lowerCamelCase for methods
  • all upper cases for constants
  • explicit names, even if they have to be long, for variables
  • 4 spaces for indentation in Python code (no tab!)
  • shared pointers in C++
  • const and references for function arguments wherever possible in C++

Other resources