Difference between revisions of "Team G - OOP344 - 20132"
Kevin Sidhu (talk | contribs) (→Blocks) |
Kevin Sidhu (talk | contribs) (→Variable Naming) |
||
Line 55: | Line 55: | ||
=== Variable Naming === | === Variable Naming === | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
− | int main() | + | int main() { |
− | { | ||
int a = 1; | int a = 1; | ||
char* bookNames; | char* bookNames; | ||
char bookId | char bookId | ||
return 0; | return 0; | ||
+ | } | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | * Try to avoid abbreviations unless very well known please: | ||
+ | <syntaxhighlight lang="cpp"> | ||
+ | int main() { | ||
+ | int letterCount // Good | ||
+ | int numCount // Good | ||
+ | int ltrCnt // Bad | ||
+ | |||
+ | int numErrors // Good | ||
+ | int n // Bad - unknown meaning | ||
+ | int nerr // Bad - ambiguous | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 14:47, 18 June 2013
Modify this page to the needs of your team.
OOP344 | Weekly Schedule | Student List | Teams | Project | Student Resources
Contents
Repository
Master Status
- Master (last pushed/being pushed) by Kevin Sidhu
Announcements
Programming Style
Will update this soon..
Indentation
- 2 spaces for indentation
- Do not use tab character
Blocks
- If statement (short one-line statement):
if (condition) doSomething(); // space between if and ( )
- If statement (multi-line or long one line statement):
if (condition) { // space between if ( ) and {
// do something // use this for short one-line statements if you'd like
}
- If else statement:
if (condition) {
// do something
} else if (condition) { // notice spaces
// do something
} else { // if else statements always use blocks even with short one line statements
// do something
}
- While statement (short one line statements):
while (condition) doSomething(); //notice spaces
OR:
while (condition) {
// do something
}
- Function declaration:
void doSomething(int arg1, char arg2) { //notice spaces
// do something
}
Variable Naming
int main() {
int a = 1;
char* bookNames;
char bookId
return 0;
}
- Try to avoid abbreviations unless very well known please:
int main() {
int letterCount // Good
int numCount // Good
int ltrCnt // Bad
int numErrors // Good
int n // Bad - unknown meaning
int nerr // Bad - ambiguous
}
Team Members
Add table rows by replacing sample table row, cell values with yours
First Name | Last Name | Section | Seneca Id & email | wiki id | IRC nick | GITHUB ID | Blog URL |
---|---|---|---|---|---|---|---|
Kevin | Sidhu | B | kssidhu1 | Kevin Sidhu | Coios | Coios | [http://ksidhucode.blogspot.ca/
Kevin Codes |
first name | last name | A | EmailId | Xin Li | IRC ID | Github ID | [http://YourBlogURL
Blog Name] |
first name | last name | A | EmailId | Zhun Xue | IRC ID | Github ID | [http://YourBlogURL
Blog Name] |