Changes

Jump to: navigation, search

OOP344 20131 - See Plus Plus

414 bytes added, 01:23, 15 February 2013
Coding Style
== Coding Style ==
1.Naming
* Names representing types must be in mixed case starting with upper case (example: SavingAccount).* Function names must be in mixed case starting with lower case (example: savingAccount()).* Variable names must be in mixed case starting with lower case. (example: savingAccount).
2.Indentation and block layoutexamples
while (!done) {
doSomething();
}
int i;
for (i = 0; i < size; i++) {
cout << data[i] << endl;
}
 
3. Empty lines
 
* Always leave two empty lines between methods.
* Normally there are not empty lines in between statements. A maximum of one empty line is permitted to separate logically distinct parts within a single method.
== Team Members ==
1
edit

Navigation menu