Make common coding rules - oop344 20113
Revision as of 13:52, 21 October 2013 by Soo-Hyun Ahn (talk | contribs)
Location : Study room #1132 in Seneca@York library
Time : 13:00 ~ 16:00
Attendee : Soohyun Ahn, Nakgui Choi, Hyunsu Lee, Yunki Lee
Agenda and activity
- Team page building
- update team page
- update team page
- Coding style
- no tab key allowed
- indent with 4 spaces
- open { in the same line
- close } in the next line
- start else in the next line
- 2 lines break for new function
- each single object has its own type (except loop counter)
- declare variable type only in prototype (not specify variables name)
- using namespace cio
- variables rules
- start with flag p_, l_ (parameter, local)
- start with lower character
- use capital character for second word
- remove vowel in variables except mandatory
- no more than 3 words for one variable
- # line use upper string for variable
- no tab key allowed