C編程規範
阿新 • • 發佈:2018-12-20
文件的 sig column xxx config msg manage static 要求
C編程規範
一、命名
1、程序文件命名:程序文件命名要求具備模塊縮寫,功能描述等信息。采用每個單詞首字母大寫方式。
exzamp: Driver.c FontManage.c
2、函數命名
DataManageValueSet(int iValue);
3、結構體命名
typedef struct _ST_DISP_WALL_INFO
{
char szName[16];
int iRow;
int iColumn;
}ST_DISP_WALL_INFO, *PST_DISP_WALL_INFO; // “ST”或者“PST”(指針類型)作為前綴
4、
聯合體命名
typedef struct _UN_DISP_WALL_INFO
{
char szName[16];
int iRow;
int iColumn;
}UN_DISP_WALL_INFO, *PUN_DISP_WALL_INFO; // “UN”或者“PUN”(指針類型)作為前綴
5、變量命名:采用第一個單詞首字母小寫,後續首字母大寫
【規則1】靜態變量加前綴s_(表示static),同時要求帶數據類型
【規則2】全局態變量加前綴g_(表示global),同時要求帶數據類型
【規則3】所有宏定義、枚舉常數和const變量全部使用大寫的字母,用下劃線分割單詞
【規則4】變量名由單詞組合而成, 具備該變量特征信息。
二、命名縮寫
[重要] : https://www.cnblogs.com/huninglei/p/5497148.html
三、C++相關規範(待補充)
C++風格
class SeriPort //定義類
{
int WriteByte()
{
int iValue;
int iData;
}
}
int main()
{
SeriPort ctrUart = new SeriPort();
ctrUart->WriteByte();
}
驅動層編程風格(下劃線大行其道)
文件命名: font.c key_manage.c wifi_config.h
全局變量命名: g_write_value;
局部變量命名: i_write_value、ivalue、value(不加g修飾默認都是局部)
函數定義: writee_byte();
四、註釋
版權聲明
//中文版權聲明
/***************************************************************************
* Copyright (c) 2018, USMART, All rights reserved.
*
* 文件名稱:文件名稱
* 摘 要:簡要描述本文件的內容
* 作 者:作者名字
*
* 修改記錄:
*[日期][作者/修改者] [修改原因]
***************************************************************************/
//英文版權聲明
/****************************************************************************
* Copyright (c) 2018, USMART, All rights reserved.
*
* FileName : xxx.h
* Description: xxxxxx.
* Author : xxxxxx([email protected])
* Date : 2018/09/27
* Version : 1.0
*
* Change Logs:
* 2018/09/27 xxxxxx : Create file.
****************************************************************************/
函數註釋
/***************************************************************************
* Function : ModbusTcpRecvMsg
* Description: read data by ModbusTcp protocol
* Parameter :
* [Input Parameter]
* iFd @Socket file handle
* [Output Parameter]
* pucRsp @Response data from slave
* Return :
iMsgLength @the total len of Response data
* Change Logs:
* 2018/11/22 jiangfeng.zhang :add comment
* 2018/11/23 jiangfeng.zhang :corrects printf bug in 383 Line
***************************************************************************/
int ModbusTcpRecvMsg(int iDevFd,unsigned char *pucRsp)
C編程規範