软件英文缩写.
变量名和函数名建议使用“驼峰”格式 -- doSomethingFunc( ... ) 函数名为:动词开头全小写 + 名词首字母大写。
文件名,源文件cpp 和头文件 h,名字保持一致。
缩写 | 中文 | 详细 | |
ACR | Audio Cassette Recorder | 盒式磁带录音机 | acr.apk: ACR 是一款 Android 下的通话录音应用,能够自动或手动进行通话录音 |
ADC | Analog-to-DigitalConventer | ||
addr | address | 地址 | IP地址 |
APM/AM | Application Manager | 应用管理 | |
app | application | 应用 | |
arg | argument | 入参 | |
asyn | asychronization | 异步 | 经常用于说明异步调用函数 |
attr | attribution | 属性 | pthread_condattr_t m_condAttr; |
avg | average | 平均 | |
buf | buffer | ||
calc | calculate | 计算 | |
ch | channel | 信道 | |
chk | check | 检查 | checkAppInfo( ) 还是不省略,使用动词+名字缩写比较好 |
cl | client | 客户端 | |
clr | clear | 清除 | 建议不使用缩写clearAppInfo() |
cmd | command | 命令 | 感觉最常用的缩写 |
cmp | compare | 比较 | 最熟悉的,字符串比较函数 strcmp() 同时,一定注意区别于strcpy 拷贝函数。 |
col | column | 栏,行 | |
cond | condition | 条件 | pthread_cond_timedwait() |
CRT | C RunTime Library | C语言运行库 | |
ctrl | control | 控制 | |
cpy | copy | 复制 | strcpy() |
dangling symlink | 悬挂软链接 | 指的是软链接指向的目标文件已不存在,导致软链接,悬挂。 | |
deact | deactive | 去激活 | |
dec | decimal | 十进制的 | |
def | default definition | 默认值 定义 | 在定义变量的时候,可以用于说明default值。例如 string def; //表示def是default值。 用于函数名的时候,更多的是表示definition。 |
env | enviroment | 环境 | |
F栏 | |||
G栏 | |||
H栏 | |||
I栏 | |||
IDE | Integrated Development Environment | 集成开发环境 | 例如 eclipse , Visual Studio, |
if | interface | 接口 | |
impl | implement | ||
J栏 | |||
K栏 | |||
L栏 | |||
M栏 | |||
mas | mass storage | 大存储 | |
ntfy | notify | 通知 | |
ODC | Orthogonal Defect Classification | 正交缺陷分类 | 正交缺陷分类法,是一种缺陷分析方法 |
OOM | Out Of the Memory | ||
OSS | Open Source Software | 开源软件 | |
parm | parameter | 参数 | |
pro | project | 项目工程 | |
proc | process | 过程 | |
RCA | Root Cause Analysis | 1、对于屡次重复发生的问题或者重点问题做RCA分析。 | |
res | result | 结果 | |
ret | return | 返回, | returnRes( ) |
set | setting | 设置 | |
sln/sol | solution | 解决方案 | 在创建项目时,特别是Visual Studio使用时,可区分解决方案和工程的命名。作为后缀。 特别讨厌,工程名和项目名重复,跟循环嵌套似得,让别人以为这是项目工程管理出问题了。 |
srv | service | 服务 | |
sys | system | 系统 | |
stat | status | 状态 | 不建议缩写,本来就不长。appStatusSwitch() |
succ | success | 成功 | success一般用于标记状态的,很少用于函数名。作为变量名建议不用缩写,APP_SUCCESS |
sups | supplementary service | 补充业务 | 手机通信协议开发用到 |
以下的特殊符号按照键盘顺序 | |||
~ | tilde | 波形号 | N-COUNT 鼻音化符号,腭化符号(西班牙语标在字母 n上,葡萄牙语标在字母 o 和 a 上) A tilde is a symbol that is written over the letter 'n' in Spanish ñ and the letters 'o' õ and 'a' ã in Portuguese to indicate the way in which they should be pronounced. |
! | exclamation mark (or point) | 感叹号, 惊叹号 | |
@ | |||
# | |||
% | |||
^ | caret | 脱字号,补字号;补字符号 | 脱字号;补注号 |
& | |||
* | |||
( | |||
) | |||
_ | |||
{ | |||
} | |||
[ | |||
] | |||
| | |||
\ | |||
: | |||
; | |||
' | |||
" | |||
, | |||
< | |||
. | |||
> | |||
/ | |||
? | |||
U栏 | |||
UML | Unified Modeling Language | 统一建模语言 | 用于软件设计的需求分析,架构设计,设计模式 |
V栏 | |||
VM | Virtual Machine | 虚拟机 | |
W栏 | |||
win/wnd | window | 窗口 | |
X栏 | |||
Y栏 | |||
Z栏 |