converntion
One convention that we have is to use the names of fruits and vegetables for variables(only in small code frsgments,nout in any real program,of course)。
一个约定我们使用水果和蔬菜的名称作为变量。
converntion 约定 variables 变量 frsaments
char pear[40]; 梨
double peach; 桃子
int mango=13; 芒果
long melon=2001; 甜瓜
This makes it easy to tell what's a C reserved word,and what's a name the programmer supplied.
这使得很容易告诉什么是一个C保留字,什么是有程序员提供的。
reserved word 保留字,关键字
Some people say that you can't compare apples and oranges,but why not-they are both hand-held round edible things that grow on trees.
edible adj 可食用的 n 食品,食物
Once you get used to it,the fruit loops really seem to help.
一旦你习惯使用它,水果圈真的看起来有帮助。
loop vt 使什么成环 n 圈,环
There is one other convention-sometimes we repeat a key point to emphasize it.
emphasize vt 着重,强调
Like a gourmet recipe book,Expert C Programming has a collection of tasty morsels ready for the reader to sample.
gourmet n 美食家 recipe n 食谱 morsels n (食物)少量
Each chapter is divided into related but self-contained sections;it's equally easy to read the book serially from start to finish,or to dip into it at random and review an individual topic at length.
serially adj 连续的 dip into 研究它 at length 最后,详细的
the technical details are sprinkled with many true stories of how C programming works in practice.
technical details 技术细节 in practice 在实践中 事实上
Humor is an important technique for mastering new material,so each chapter ends with a "light relief" section containing an amusing C story or piece of software folklore to give the reader a change of pace.
幽默是一种重要的技术,掌握新材料,所以每一章结尾“轻松”一节包含一个可笑的C故事或软件的民间传说,给读者一个改变习惯。
converntion的更多相关文章
- RoR - Introduction to Active Record
Active Record: ORM ( Object-relational Mapping)Bridges the gap between relational databases , which ...
随机推荐
- Xcode7免证书真机调试实践
1.Open Xcode7, click menu "Xcode-Preferences-accounts" to add your AppleId; 2.According to ...
- Layout Support 获取上下bar的长度
Layout Support This protocol . You can use layout guides as layout items in the NSLayoutConstraint f ...
- maven学习手记 - 2
学习目标 maven 的插件和目标: maven 的生命周期和阶段. 前言 在手记1中看到执行 mvn clean package 时,maven 自动执行了compile 和 test 操作. ...
- MNC - Multicast NetCat
MNC - Multicast NetCat 使用nc测试udp多播,总是遇到奇怪的问题,搞的一头雾水.偶然发现了MNC,测试了一下果然好用. 下载地址: https://github.com/mar ...
- c/c++常用代码---doc,ppt,xls文件格式转PDF格式[转]
[转]doc,ppt,xls文件格式转PDF格式 http://blog.csdn.net/lee353086/article/details/7920355 确实好用. 需要注意的是#import文 ...
- java静态变量、静态方法和静态代码段
先上实例 public class TestStatic { public static String staticString = "this is a static String&quo ...
- Java面试之SE基础基本数据类型
1.九种基本数据类型的大小以及它们的封装类 在我们面试或者考试过程中经常会考到八种基本数据类型以及它们的封装类,那么有哪八种基本数据类型呢?它们的封装类又是什么呢? 首先,八种基本数据类型分别是:in ...
- 嵌套回调异步与$.Deferred异步
HTML: <input type="button" id="btn1" value="嵌套回调异步"> <input t ...
- JavaScript 类型转换
在 JavaScript 中有 5 中不同的数据类型: string number boolean object function 3 种对象类型: Object Date Array 2 个不包含任 ...
- Eclipse : cannot open output file(c++)
之前电脑卡的时候 强制关闭Eclipse,结果打开再次运行的时候却不能输出了:找了网上的原因,是之前那个进程还未关闭 开发环境 Eclipse for C/C++ & MinGW Er ...