0%

C语言 基于Doxygen的C/C++注释原则

基于Doxygen的C/C++注释原则

#define OST_TIMESTAMP DATE “ “ TIME

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42

## 1. 文件头的标注

```c
/*****************************************************************************
* The ATAS Library *
* Copyright (C) 2010 Shaoguang Guo sgguo@shao.ac.cn *
* *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License version 3 as *
* published by the Free Software Foundation. *
* *
* You should have received a copy of the GNU General Public License *
* along with SHAO. If not, see <http://www.gnu.org/licenses/>. *
* *
* Unless required by applicable law or agreed to in writing, software *
* distributed under the License is distributed on an "AS IS" BASIS, *
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
* See the License for the specific language governing permissions and *
* limitations under the License. *
* *
* @file Example.h *
* @brief brief introduction *
* Details. *
* *
* @author Shaoguang Guo *
* @email sgguo@shao.ac.cn *
* @version 0.1(version) *
* @date 2010.07.16 *
* @license GNU General Public License (GPL) *
* *
*----------------------------------------------------------------------------*
* Remark : Description *
*----------------------------------------------------------------------------*
* Change History : < can omit if using VCS > *
* <Date> | <Version> | <Author> | <Description> *
*----------------------------------------------------------------------------*
* 2010/07/16 | 0.1 | Shaoguang Guo | Init the repo *
*----------------------------------------------------------------------------*
* *
*****************************************************************************/

2.命名空间

1
2
3
4
5
6
7
/**
* @brief 命名空间的简单概述 \n(换行)
* 命名空间的详细概述
*/
namespace OST
{
}

3. 类、结构、枚举标注

1
2
3
4
5
6
7
/**
* @brief 类的简单概述 \n(换行)
* 类的详细概述
*/
class Example
{
};

枚举类型定义、结构体类型定义注释风格类似

1
2
3
4
5
6
7
8
9
/**
* @brief 简要说明文字
*/
typedef struct 结构体名字
{
成员1, /*!< 简要说明文字 */ or ///<说明, /**<说明 */ 如果不加<,则会认为是成员2的注释
成员2, /*!< 简要说明文字 */ or ///<说明, /**<说明 */
成员3, /*!< 简要说明文字 */ or ///<说明, /**<说明 */
}结构体别名;

4. 函数注释原则

1
2
3
4
5
6
7
8
9
/**
* @brief 函数简要说明-测试函数
* @param index 参数1
* @param t 参数2 @see CTest
*
* @return 返回说明
* -<em>false</em> fail
* -<em>true</em> succeed
*/
bool Test(int index, const CTest& t);

note:指定函数注意项事或重要的注解指令操作符
note格式如下:
        @note 简要说明

retval:指定函数返回值说明指令操作符。(注:更前面的return有点不同.这里是返回值说明)
retval格式如下:
        @retval 返回值 简要说明

pre:指定函数前置条件指令操作符
pre格式如下:
        @pre 简要说明

par:指定扩展性说明指令操作符讲。(它一般跟code、endcode一起使用 )
par格式如下:
      @par 扩展名字

code、endcode:指定
code、endcode格式如下:
        @code
            简要说明(内容)
        @endcode

see:指定参考信息。
see格式如下:
        @see 简要参考内容

deprecated:指定函数过时指令操作符。
deprecated格式如下:
      @deprecated 简要说明 

  调试Bug说明
    解决的bug说明,@bug
  警告说明 (warning)
    定义一些关于这个函数必须知道的事情,@warning
  备注说明 (remarks)
    定义一些关于这个函数的备注信息,@remarks
  将要完成的工作 (todo)
    说明哪些事情将在不久以后完成,@todo
  使用例子说明 (example)
    例子说明,@example example.cpp

5. 变量注释

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  /// 简述
/** 详细描述. */
或者
//! 简述
//! 详细描述
//! 从这里开始
int m_variable_1; ///< 成员变量m_variable_1说明
int m_variable_2; ///< 成员变量m_variable_1说明

/**
* @brief 成员变量m_c简要说明
*
* 成员变量m_variable_3的详细说明,这里可以对变量进行
* 详细的说明和描述,具体方法和函数的标注是一样的
*/
bool m_variable_3;

如果变量需要详细说明的可已按照m_varibale_3的写法写,注意,m_variable_2和m_variable_3之间一定需要空行,否则会导致m_variable_2的简述消失

6. 模块标注

模块定义格式:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
* @defgroup 模块名 页的标题名 (模块名只能英文,这个可以随便取.在一个源文件里不能相同)
* @{ (跟c语言{一样起作用域功能)
*/
… 定义的内容 …
/** @} */

例:
/**
* @defgroup HenryWen Example.cpp
* @{
*/
… 定义的内容 …
/** @} */

7. 分组标注

分组定义格式:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
* @name 分组说明文字
* @{
*/
… 定义的内容 …
/** @} */

例:
/**
* @name PI常量
* @{
*/
#define PI 3.1415926737
/** @} */

/**
* @name 数组固定长度常量
* @{
*/
const int g_ARRAY_MAX = 1024;
/** @} */
处无为之事,行不言之教;作而弗始,生而弗有,为而弗恃,功成不居!

欢迎关注我的其它发布渠道