当前位置:网站首页>Twelve rules for naming variables
Twelve rules for naming variables
2022-07-06 07:09:00 【Ana_ ing】
General rules
Rule one
Intuitively, you can spell , Look at the text and know the meaning , Easy to remember , Use English words or combinations , Pinyin is not recommended , English words should not be too complicated , It is recommended to use the abbreviation
Rule 2
The variable length conforms to “min_length && max_information”, such as Max_value Replace maxvalueuntiloverflow, Longer words can be abbreviated by removing vowels
Rule three
When the identifier consists of more than one word , The first letter of each word should be capitalized , The rest are in lowercase
for example int CurrentVal; // It looks clear and understandable
Rule 4
Try to avoid numbers in names , For example, I used to like to use value1,value2,value3 wait , Unless it is logically necessary , Like driver development and pins , Numbering is easier to use
Rule five
Global variables or functions that are commonly used among multiple files must be marked with a range limiting symbol ,( It is recommended to use the module abbreviation as the scope qualifier )
Rule 6
Symbol naming has two parts , Specification identifier prefix ( suffix )+ Meaning identification , Global variables to g or g+ Module abbreviation ( Capitalization ) Prefix , Variable names followed by the first capital letter .C The global variable in is an unstable factor , Be alert , Use prefix to explicitly identify variables as global , It can prompt . Add the abbreviation of the module before the name , When integrating and linking multiple modules , Avoid duplicate names of global variables between modules .
In local variable , Cycle count / Array subscripts are available i,j,k,m Sequential representation . in addition to , Prefix other variables to indicate variable type , There is no unified specification for prefixes ,p For the pointer ,pf Pointer to function ,f Single precision floating point ,db Double precision floating point ,u,s Represents unsigned and signed numbers respectively , namely unsigned And signed. In this way, its type can be seen from the variable name , And avoid some bug
Templates : Module name abbreviation _ Scope prefix | Data type prefix |【 Pointer prefix 】| Meaning identification | Array / Structure suffix
Rule seven
Scope prefix naming rules
Identifier type | Scope prefix |
Global variables | g |
File local variables | n |
Function local variable | f |
Local scope variables | a |
Global function | g |
Static functions | n |
Rule eight
Data type prefix naming rules
Prefix | suffix | data type | remarks |
bt | bit | ||
boolean | boolean | ||
char | char | ||
i | int | ||
s | shrot[int] | ||
l | long[int] | ||
u | unsigned[int] | ||
d | duoble | ||
f | float | ||
p | pointer | Pointer prefix | |
v | void | ||
st | enum | ||
st | struct | ||
st | union | ||
fp | function point | ||
_a | array of | ||
_st | typedef enum/struct/union |
Rule nine
The meaning of the variable consists of the identifier : The target word + Verb ( past participle )+ adverbial + The goal is
for example :DataDeletedFromSD
Function meaning and identifier constitute :
Verb ( Present tense )+ The target word + adverbial + The goal is
by the way , At the same time, Amway Yibo now really watches Grammar Videos
Rule 10
All macro definitions , Enumeration constant , Read only variables are all named in capital letters , Divide words with underscores .
for example
const int MAX_LENGTH = 100;
#define FILE_PATH “/usr/tmp”
Rule 11
Don't forget to initialize when defining variables . The compiler does not necessarily empty this memory when defining variables , Its value may be invalid data .
Rule 12
Considering habit , Local variables can be named in a common way , Is limited to n,i,j Etc. are used as loop variables .
2022 year 7 month 5 Japan 21:26:07 Administration building
边栏推荐
- #systemverilog# 可綜合模型的結構總結
- TS Basics
- Compile, connect -- notes-2
- SEO学习的最好方式:搜索引擎
- C - Inheritance - polymorphism - virtual function member (lower)
- AttributeError: Can‘t get attribute ‘SPPF‘ on <module ‘models. common‘ from ‘/home/yolov5/models/comm
- GET 和 POST 请求类型的区别
- Uncaught TypeError: Cannot red propertites of undefined(reading ‘beforeEach‘)解决方案
- Entity Developer数据库应用程序的开发
- Depth residual network
猜你喜欢
Path analysis model
Visitor tweets about how you can layout the metauniverse
ROS learning_ Basics
1091: two or three things in childhood (multi instance test)
SEO学习的最好方式:搜索引擎
CDN acceleration and cracking anti-theft chain function
Wechat brain competition answer applet_ Support the flow main belt with the latest question bank file
前缀和数组系列
[server data recovery] case of offline data recovery of two hard disks of IBM server RAID5
Wechat official account infinite callback authorization system source code, launched in the whole network
随机推荐
Missing monitoring: ZABBIX monitors the status of Eureka instance
Visitor tweets about how you can layout the metauniverse
3. Business and load balancing of high architecture
升级版手机检测微信工具小程序源码-支持多种流量主模式
Practical guidance for interface automation testing (Part I): what preparations should be made for interface automation
Internal and external troubles of "boring ape" bayc
Three methods of adding color to latex text
JDBC学习笔记
chrome查看页面fps
The author is dead? AI is conquering mankind with art
巴比特 | 元宇宙每日必读:中国互联网企业涌入元宇宙的群像:“只有各种求生欲,没有前瞻创新的雄心”...
Uncaught TypeError: Cannot red propertites of undefined(reading ‘beforeEach‘)解决方案
What does UDP attack mean? UDP attack prevention measures
软件测试外包到底要不要去?三年真实外包感受告诉你
The ECU of 21 Audi q5l 45tfsi brushes is upgraded to master special adjustment, and the horsepower is safely and stably increased to 305 horsepower
Supporting title of the book from 0 to 1: ctfer's growth road (Zhou Geng)
UDP攻击是什么意思?UDP攻击防范措施
#systemverilog# 可综合模型的结构总结
LeetCode Algorithm 2181. 合并零之间的节点
Pymongo gets a list of data