由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 大家programming时怎么命名?
相关主题
Call assembly in c++ under linux请用过JAXWS和JAXB的赐教更改service method名字
underscore usage in C++ name大牛们对Object C有何点评?
sh question: get the file name of a script when started from a dot commandJavascript确实是最优秀的语言之一
请问大家怎样让程序难以读懂求教一个matlab和.net整合的问题
register variablejava抄了很多obj-c好不好
lambda的一个疑问JavaScript 有没有 optional Type 或者 JSON field 校验
sql 数据是存在哪里 (转载)平生不学fp 纵称程序员也枉然
Can someone help me a quick regex?谁能深入浅出的讲讲protocol和delegate的要点?
相关话题的讨论汇总
话题: 命名话题: java话题: variable话题: like
进入Programming版参与讨论
1 (共1页)
A*g
发帖数: 102
1
【 以下文字转载自 Linux 讨论区 】
发信人: Ang (拖拉A梦), 信区: Linux
标 题: 大家programming时怎么命名?
发信站: BBS 未名空间站 (Tue Jun 24 18:50:19 2008), 转信
怎样命名variable, function, class, filename ...
c***r
发帖数: 4631
2
float fCurrentPosZMotor = 0.0f;
t****e
发帖数: 69
3
Hungarian notation is not considered a good practice now.
Better use
float currentZPositionOfMotor = 0.0;

【在 c***r 的大作中提到】
: float fCurrentPosZMotor = 0.0f;
k**f
发帖数: 372
4
There are many naming conventions. The Java convention is a popular one.
Check it out at:
http://java.sun.com/docs/codeconv/html/CodeConventions.doc8.html
r*********r
发帖数: 3195
5
i still like the traditional C way of naming: using underscore, like cur_z.
some of the java code has insanely long variable name, like
hasNoSpecialMeaningSadVariable . lol
d*******8
发帖数: 3182
6
variable:类型小写在前,like: strProductName
function: 动词小写在前,like: getProductName
class:名次大写,like: ProductObject
filename: 差不多和class 一样吧。
f*******y
发帖数: 988
7
每个语言,甚至每个公司和project都不一样的convention的

【在 A*g 的大作中提到】
: 【 以下文字转载自 Linux 讨论区 】
: 发信人: Ang (拖拉A梦), 信区: Linux
: 标 题: 大家programming时怎么命名?
: 发信站: BBS 未名空间站 (Tue Jun 24 18:50:19 2008), 转信
: 怎样命名variable, function, class, filename ...

g*****g
发帖数: 34805
8
It's all about consistency, so far, I'd say Sun did a good job on
java convention. C++ style can be very different. Java, you can almost
figure out how well one's trained by looking at the namings.

【在 f*******y 的大作中提到】
: 每个语言,甚至每个公司和project都不一样的convention的
f*******y
发帖数: 988
9
java这个rule是sun的官方版本吧

【在 g*****g 的大作中提到】
: It's all about consistency, so far, I'd say Sun did a good job on
: java convention. C++ style can be very different. Java, you can almost
: figure out how well one's trained by looking at the namings.

f*****Q
发帖数: 1912
10
为什么涅?

【在 t****e 的大作中提到】
: Hungarian notation is not considered a good practice now.
: Better use
: float currentZPositionOfMotor = 0.0;

f*****Q
发帖数: 1912
11
俺记着OS X里面都用NS开头表示NeXTSTEP。
Mozilla也用NS开头表示Netscape。
t****e
发帖数: 69
12
As an example, suppose later you decide to change the variable type from "fl
oat" to "double," then you'll have to change the variable name in every loc
ation, otherwise it will give false information.

【在 f*****Q 的大作中提到】
: 为什么涅?
1 (共1页)
进入Programming版参与讨论
相关主题
谁能深入浅出的讲讲protocol和delegate的要点?register variable
请问haskell中的underscorelambda的一个疑问
JS总是有点别扭sql 数据是存在哪里 (转载)
Angular放弃service直接用controller如何Can someone help me a quick regex?
Call assembly in c++ under linux请用过JAXWS和JAXB的赐教更改service method名字
underscore usage in C++ name大牛们对Object C有何点评?
sh question: get the file name of a script when started from a dot commandJavascript确实是最优秀的语言之一
请问大家怎样让程序难以读懂求教一个matlab和.net整合的问题
相关话题的讨论汇总
话题: 命名话题: java话题: variable话题: like