?? 變量注釋規范.txt
字號:
編寫日期:2011.10.12
基本類型變量注釋規范:
/*********************************************************************
*
* multi line long comment
*
**********************************************************************/
type var_name;
or
/* single line long comment */
type var_name;
or
type var_name; /* short comment */
結構體注釋規范:
/*********************************************************************
*結構體名:struct struct_name (typedef name)
*描 述:
**********************************************************************/
typedef struct struct_name
{
/* long comment */
type member_name; /* short comment */
/* long comment */
type member_name; /* short comment */
}typedef_name;
/*********************************************************************
*Struct Name: struct struct_name (typedef name)
*Description:
**********************************************************************/
typedef struct struct_name
{
/* long comment */
type member_name; /* short comment */
/* long comment */
type member_name; /* short comment */
}typedef_name;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -