Changes

Jump to: navigation, search

Team Excellence - oop344 20113 Code Standards

495 bytes added, 23:53, 18 October 2011
Class Standards
== If Statement ==
'''Sandip:'''
I have a proposal. How about doing it like this:
<syntaxhighlight lang="cpp">
if (condition)
{
stuff;
}
else if (condition)
{
stuff;
}
else
{
stuff;
}
</syntaxhighlight>
'''Dzmitry:'''
if (condition){
stuff;
}else if (condition){
stuff;
}else{
stuff;
}
</syntaxhighlight>
That will save a few lines, also space between "stuff" and beginning of the line should be default Visual Studio Tab (Mine is 4 spaces). '''Jitender:'''Guys, we should agree one of the standard, I agree with Dzmitry proposal, it short and easy to follow
== For Loop ==
<syntaxhighlight lang="cpp">
for (i=0; condition; i++){
stuff;
}
== While Loop ==
<syntaxhighlight lang="cpp">
while (true){
stuff;
}
**/
#ifndef _CLASS__INITIAL_CLASS_#define _CLASS__INITIAL_CLASS_
class CLASS {
int a_a; int b_b;
public:
#endif
</syntaxhighlight>
 
'''All Cpp File Standards:'''
<syntaxhighlight lang="cpp">
 
/* Function Starts here */
function name() {
 
/* Header goes here */
int key = 0; // Comment goes here
bool done = false;
 
/* Again Important Header goes here */
if(condition){
stuffs;
}
 
/* All Loops */
for(i=0; i<len; i++){
statements;
}
while(condition){
statements;
}
 
}
/* function ends here */
</syntaxhighlight>

Navigation menu