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.
Short comments can be placed after the data member definition.
They have to be preceded with ///<
unless a special
syntax is required by the external packages.
For example:
private: int mTotalNumberOfEntries; ///< Total number of entries
Long comments should be placed before the data member definition. For example:
private: /// Keeps track of the total number of entries in the table. int mTotalNumberOfEntries;
If the comment spans on more than one line put a summary line first separated from the detailed description with an empty comment line. For example:
private: /// Keeps track of the total number of entries in the table. /// /// Used to ensure we do not go over the limit. -1 means /// that we don't yet know how many entries the table has. int mTotalNumberOfEntries;
In special cases, when a given syntax is required by an
external package, another form of the comment, compliant with
Doxygen rules, should be used. In classes using ROOT IO,
use //!<
for the data members excluded from IO.
For example:
private: int mTotalNumberOfEntries; ///< Total number of entries double mBuffer; //!< Temporary buffer
namespace
keyword.
[1] Doxygen [http://www.doxygen.org]