C++ Language Coding Standards

Introduction

This coding style guide should be used for all assignments you submit in class. You will be graded on your ability to create code using these standards.

A style guide is a set of mandatory requirements for layout and formatting. Uniform style makes it easier for you to read code from your instructor and classmates. You will really appreciate the consistency if you do a team project. It is also easier for your instructor and your grader to grasp the essence of your programs quickly.

Here are the most important highlights:

  1. Tabs are set every four spaces.
  2. Variable and function names are lowercase.
  3. Constant names are uppercase. Class names start with an uppercase letter.
  4. There are spaces after reserved words and between binary operators.
  5. Braces must line up.
  6. No magic numbers may be used.
  7. Every function must have a comment.
  8. At most 30 lines of code may be used per function.
  9. Limit the use of global variables
  10. Never, ever, ever use goto

Test Cases

In order to pass-off your programs, you are required to have test cases. Test cases help you to check your code for errors. The following is an acceptable way of writing your test cases:

  • Inputs
  • Outputs
  • Logic
  • Test Cases

For Example:

// This program decides on which light bulb is the better deal

 Inputs: 
   Initial cost of bulb1
   Initial cost of bulb2
   Power used for bulb1
   Power used for bulb2
   Cost of power
 Outputs:
   Total cost for a year of bulb 1 usage
   Total cost for a year of bulb 2 usage
 Logic:
   Total cost is power cost + initial cost for each bulb
 Test Cases:
 1)
   bulb1_Cost = 10.50; // dollars
   bulb2_Cost = 0.85;
   bulb1_Power = 0.005; // KW
   bulb2_Power = 0.100; // KW
   total_bulb1 = 12.69
   total_bulb2 = 44.65
 2)
   bulb1_Cost = 0; // dollars
   bulb2_Cost = 0;
   bulb1_Power = 0.005; // KW
   bulb2_Power = 0.100; // KW
   total_bulb1 = 2.19
   total_bulb2 = 43.8
 3)
   bulb1_Cost = 10.50; // dollars
   bulb2_Cost = 0.85;
   bulb1_Power = 0.000; // KW
   bulb2_Power = 0.000; // KW
   total_bulb1 = 10.50
   total_bulb2 = 0.85

Source Files

Each program is a collection of one or more files or modules. The executable program is obtained by compiling and linking these files. Organize the material in each file as follows:

  • Header comments
  • #include statements
  • Constants
  • Classes
  • Functions

It is common to start each file with a comment block. Here is a typical format:

 /**
    @file invoice.cpp
    @author Jenny Koo
    @date 2012-01-24
    @version 3.14 
 */

You may also want to include a copyright notice, such as

 /* Copyright 2012 Jenny Koo */
A valid copyright notice consists of

  • the copyright symbol © or the word “Copyright” or the abbreviation “Copr.”
  • the year of first publication of the work
  • the name of the owner of the copyright

 #include  
 #include "question.h"

Do not embed absolute path names, such as

 #include "c:\me\my_homework\widgets.h"  // Don't !!!

After the header files, list constants that are needed throughout the program file.

 const int GRID_SIZE = 20; 
 const double CLOCK_RADIUS = 5;

Then supply the definitions of all classes.

 class Product 
 { 
    ...
 };

Order the class definitions so that a class is defined before it is used in another class. Finally, list all functions of the modules, including member functions of classes and nonmember functions. Order the nonmember functions so that a function is defined before it is called. As a consequence, the main function will be the last function in your file.

Functions

Supply a comment of the following form for every function.

 /**
    Explanation.    
    @param parameter variable1 explanation    
    @param parameter variable2 explanation    
    ...    
    @return explanation 
 */

The introductory explanation is required for all functions except main. It should start with an uppercase letter and end with a period. Some documentation tools extract the first sentence of the explanation into a summary table. Thus, if you provide an explanation that consists of multiple sentences, formulate the explanation such that the first sentence is a concise explanation of the function's purpose.

Omit the @param comment if the function takes no parameters. Omit the @return comment for procedures (void functions). Here is a typical example.

 /**    
    Converts calendar date into Julian day. This algorithm is from Press     
    et al., Numerical Recipes in C, 2nd ed., Cambridge University Press, 1992.    
    @param year  the year of the date to be converted    
    @param month the month of the date to be converted    
    @param day the day of the date to be converted    
    @return the Julian day number that begins at noon of the given   
    calendar date 
 */
 
 long dat2jul(int year, int month, int day) 
 { 
    ... 
 }

Parameter names must be explicit, especially if they are integers or Boolean.

 Employee remove(int d, double s); // Huh?  
 Employee remove(int department, double severance_pay); // OK 

Of course, for very generic functions, short names may be very appropriate.

Do not write void functions that return exactly one answer through a reference. Instead, make the result into a return value.

 void find(vector c, bool& found); // Don't!
 bool find(vector c); // OK 

Of course, if the function computes more than one value, some or all results can be returned through reference parameters.

Functions must have at most 30 lines of code. (Comments, blank lines, and lines containing only braces are not included in this count.) Functions that consist of one long if/else/else statement sequence may be longer, provided each branch is 10 lines or less. This rule forces you to break up complex computations into separate functions.

Local Variables

Do not define all local variables at the beginning of a block. Define each variable just before it is used for the first time. Every variable must be either explicitly initialized when defined or set in the immediately following statement (for example, through a » instruction).

 int pennies = 0;
or
 int pennies; 
 cin >> pennies;

Move variables to the innermost block in which they are needed.

 while (...) 
 { 
    double xnew = (xold + a / xold) / 2;    
    ... 
 }

Do not define two variables in one statement:

 int dimes = 0, nickels = 0; // Don't

When defining a pointer variable, place the * with the type, not the variable:

 Link* p; // OK 
not
 Link *p; // Don't 

Constants

In C++, do not use #define to define constants:

 #define CLOCK_RADIUS 5 // Don't 
Use const instead:
 const double CLOCK_RADIUS = 5; // The radius of the clock face
You may not use magic numbers in your code. (A magic number is an integer constant embedded in code without a constant definition.) Any number except 0, 1, or 2 is considered magic:
 if (p.get_x() < 10) // Don't 
Use a const variable instead:
 const double WINDOW_XMAX = 10; 
 if (p.get_x() < WINDOW_XMAX) // OK 
Even the most reasonable cosmic constant is going to change one day. You think there are 365 days per year? Your customers on Mars are going to be pretty unhappy about your silly prejudice. Make a constant
 const int DAYS_PER_YEAR = 365;
so that you can easily produce a Martian version without trying to find all the 365's, 364's, 366's, 367's, and so on in your code.

Classes

Lay out the items of a class as follows:

 class ClassName 
 { 
 public: 
    constructors 
    mutators   
    accessors 
 private: 
    data 
 };
All data fields of classes must be private.

Control Flow

The for Statement Use for loops only when a variable runs from somewhere to somewhere else with some constant increment/decrement.

 for (int i = 0; i < a.size(); i++) 
 { 
    cout << a[i] << endl; 
 }
Do not use the for loop for weird constructs such as
 for (xnew = a / 2; count < ITERATIONS; cout << xnew) // Don't
 { 
    xold = xnew;    
    xnew = xold + a / xold;    
    count++; 
 }
Make such a loop into a while loop, so the sequence of instructions is much clearer.
 xnew = a / 2; 
 while (count < ITERATIONS) // OK
 { 
    xold = xnew;    
    xnew = xold + a / xold;    
    count++;    
    cout << xnew; 
 }

Nonlinear Control Flow

Don't use the switch statement. Use if/else instead. Do not use the break, continue, or goto statement. Use a bool variable to control the execution flow. Lexical Issues

Naming Conventions

The following rules specify when to use upper- and lowercase letters in identifier names.

  1. All variable and function names and all data fields of classes are in lowercase, sometimes with an underscore in the middle. For example, first_player.
  2. All constants are in uppercase, with an occasional underscore. For example, CLOCK_RADIUS.
  3. All class names start with uppercase and are followed by lowercase letters, with an occasional uppercase letter in the middle. For example, BankTeller.

Names must be reasonably long and descriptive. Use first_player instead of fp. No drppng f vwls. Local variables that are fairly routine can be short (ch, i) as long as they are really just boring holders for an input character, a loop counter, and so on. Also, do not use ctr, c, cntr, cnt, c2 for five counter variables in your function. Surely each of these variables has a specific purpose and can be named to remind the reader of it (for example, ccurrent, cnext, cprevious, cnew, cresult).

Indentation and White Space

Use tab stops every three columns. Save your file so that it contains no tabs at all. That means you will need to change the tab stop setting in your editor! In the editor, make sure to select “3 spaces per tab stop” and “save all tabs as spaces”. Every programming editor has these settings. If yours doesn't, don't use tabs at all but type the correct number of spaces to achieve indentation. Use blank lines freely to separate logically distinct parts of a function.

Use a blank space around every binary operator:

 x1 = ( -b - sqrt(b * b - 4 * a * c ) ) / ( 2 * a ); // Good 
 x1=( -b - sqrt(b*b-4*a*c) ) / (2*a); // Bad
Leave a blank space after (and not before) each comma, semicolon, and reserved word, but not after a function name.
 if (x == 0) ...  
 f(a, b[i]);
Every line must fit on 80 columns. If you must break a statement, add an indentation level for the continuation:
 a[n] = ................................................... 
    + .................;

Braces

Opening and closing braces must line up, either horizontally or vertically.

 while (i < n) { cout << a[i] << endl; i++; } // OK 
 while (i < n) 
 { 
    cout << a[i] << endl;     
    i++; 
 } // OK 

Some programmers don't line up vertical braces but place the { behind the while:

 while (i < n) { // Don't  
    cout << a[i] << endl;    
    i++; 
 }

This style saves a line, but it is difficult to match the braces. Always use braces with if, while, do, and for statements, even if the body is only a single statement.

 if (floor > 13)
 {
    floor--;
 }
 if (floor > 13)
    floor--;   // Don't
    

Unstable Layout

Some programmers take great pride in lining up certain columns in their code:

 class Employee 
 { 
    ... 
 private: 
   string  name;      
      int  age;   
   double  hourly_wage;     
 };

This is undeniably neat, and we recommend it if your editor does it for you, but don't do it manually. The layout is not stable under change. A data type that is longer than the preallotted number of columns requires that you move all entries around.

Some programmers like to format multiline comments so that every line starts with **:

 /* This is a comment 
 ** that extends over 
 ** three source lines 
 */
Again, this is neat if your editor has a command to add and remove the asterisks, and if you know that all programmers who will maintain your code also have such an editor. Otherwise, it can be a powerful method of discouraging programmers from editing the comment. If you have to choose between pretty comments and comments that reflect the current facts of the program, facts win over beauty.

cs-142/coding-style.txt · Last modified: 2015/01/07 09:07 by ryancha
Back to top
CC Attribution-Share Alike 4.0 International
chimeric.de = chi`s home Valid CSS Driven by DokuWiki do yourself a favour and use a real browser - get firefox!! Recent changes RSS feed Valid XHTML 1.0