码迷,mamicode.com
首页 > 编程语言 > 详细

C++学习笔记5:如何给变量及函数命名?

时间:2016-12-03 01:58:37      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:des   ica   nobody   name   clear   different   led   int   count   

1.遵循C++规定的变量及函数命名方法;

2.原则:简单,易于理解;

以下是一些例子,可以作为参考:

//bad examples:
int ccount;//Nobody knows what a ccount is.
int i;//Generally bad unless use is trivial or temporary, such as loop variables.
int _count;//don‘t start variable names with underscore.
int data;//What kind of data?
int value1,value2;//Can be hard to differentiate between the two?
int x,y;//generally bad unless use is trivial, such as in trivial mathematical functions.

//good examples:
int customerCount;//clear what we‘re counting
int index;//okay if obvious what we‘re indexing
int totalScore;//good descriptive
int numberOfApples;//descriptive
int monstersKilled;//descriptive

 

C++学习笔记5:如何给变量及函数命名?

标签:des   ica   nobody   name   clear   different   led   int   count   

原文地址:http://www.cnblogs.com/hujianglang/p/6127551.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!