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.
Function Declarations
Every function declaration should have comments immediately preceding it that describe what the function does and how to use it. These comments should be descriptive ("Opens the file") rather than imperative ("Open the file").
The Doxygen keywords \param
and \return
can be used to describe
the function arguments and the return value. Note that when using these
keywords, all arguments have to be documented.
Here is an example:
/// Opens a file. /// \param name The name of a file to open /// \return Return true if open successfully. bool OpenFile(const std::string& name);
Do not skip comments even for trivial functions like constructors and destructors, even though everyone reading your code knows what constructors and destructors are for, but put a standard agreed text:
/// Default constructor MyClass(); /// Standard constructor MyClass(int value); /// Destructor ~MyClass(int value); /// Disabled constructor MyClass() = delete; /// Disabled destructor ~MyClass(int value) = delete;
This will allow to automatise checking for functions with no comments provided.
Function Definitions
Function definitions can also have a comment describing what the function does if there's anything tricky about how it does its job.
Note you should not just repeat the comments given
with the function declaration, in the .h
file.
/// More details can be given to a function definition in .cxx file bool MyClass::OpenFile(const std::string& name);
namespace
keyword.
[1] Doxygen [http://www.doxygen.org]