This document is based on the work of
B. Weinberger, C. Silverstein,
G. Eitzmann, M. Mentovai
and T.Landray
at http://google-styleguide.googlecode.com,
C++ Google Style guide, Revision 3.274
under the CC-By 3.0 License
Each style point has a summary for which additional information is available by toggling the accompanying arrow button that looks this way:
. You may toggle all summaries with the big arrow button:Though a pain to write, comments are absolutely vital to keeping our code readable. The following rules describe what you should comment and where. But remember: while comments are very important, the best code is self-documenting. Giving sensible names to types and variables is much better than using obscure names that you must then explain through comments.
When writing your comments, write for your audience: the next contributor who will need to understand your code. Be generous — the next one may be you!
/// ... text ... /// ... text ...
///
syntax for the comments going in the
Web documentation, the //
syntax for explicative
comments in the code and the /* */
syntax only for
the comments within one line.
class
keyword.
namespace
keyword.
Complex Code Blocks/Lines
Tricky or complicated code blocks can have comments
before them. Note that such comments should be preceded with //
,
as they are not supposed to go to the Web documentation.
Example:
// Divide result by two, taking into account that x // contains the carry from the add. for (int i = 0; i < result->size(); i++) { x = (x << 8) + (*result)[i]; (*result)[i] = x >> 1; x &= 1; }
Also, lines that are non-obvious can get a comment at the end of the line. These end-of-line comments should be separated from the code by 2 spaces. Example:
// If we have enough memory, mmap the data portion too. mmapBudget = max<int64>(0, mmapBudget - index_->length()); if (mmapBudget >= mDataSize && !MmapData(mmapChunkBytes, mlock)) return; // Error already logged.
Note that there are both comments that describe what the code is doing, and comments that mention that an error has already been logged when the function returns.
If you have several comments on subsequent lines, it can often be more readable to line them up:
doSomething(); // Comment here so the comments line up. doSomethingElseThatIsLonger(); // Comment here so there are two spaces between // the code and the comment.
To Do Comments
Precede comments with \todo
keyword for code that is temporary, a
short-term solution, or good-enough but not perfect. A list of these items will be
then automatically included in the generated Web documentation.
/// \todo Use a "*" here for concatenation operator. /// \todo Zeke change this to use relations.
If your comment is of the form "At a future date do something" make sure that you either include a very specific date ("Fix by November 2005") or a very specific event ("Remove this code when all clients can handle XML responses.").
[1] Doxygen [http://www.doxygen.org]