当前变量和函数的命名方案是什么?
是否有标准的方法来命名它们,或者是程序员的调用?
谢谢。
Is there a standard way to name them or is it programmer's call?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否有标准的方法来命名它们,或者是程序员的调用?
谢谢。
Is there a standard way to name them or is it programmer's call?
Thank you.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
使用贵公司的编码指南;如果它们已过时,则对它们提出质疑(即,尽管使用版本控制,但仍将更改列表保留在文件顶部)。
如果您是第一个程序员或者自己做程序员,请确定一套适合您的编码指南,将其记录下来并坚持下去。
Use your company's coding guidelines; challenge them if they are outdated (i.e. keep a list of changes at the top of the file despite using version control).
If you're the first programmer or doing it for yourself, decide on a set of coding guidelines that works for you, document it, and stick with it.
一些非常基本且几乎被普遍接受的东西:
使用名词作为变量名称。
使用动词作为函数名称。
这使得编码更容易理解。
除此之外,还有很多很多“规则” - 我怀疑其他答案会提供一些。
Something very basic and pretty much universally accepted:
use nouns for variable names.
use verbs for function names.
This makes coding easier to understand.
Beyond that, there are lots and lots of "rules" - I suspect the other answers will provide a few.
以下是 GNU 人员发布的命名指南;它们与许多其他的类似,并且同样好:
http:// www.gnu.org/prep/standards/html_node/Names.html#Names
Here are the naming guidelines posted by the GNU folks; they're similar to many others and about as good:
http://www.gnu.org/prep/standards/html_node/Names.html#Names
嗯,
我通常将函数命名为:
变量/成员为:
全局变量:
最重要的是,我尝试将所有命名都遵循此标准。我真的不知道这后面是什么符号,但我不太喜欢匈牙利符号,所以......
顺便说一句,我看到很多人不遗余力地写出后来他们无法理解的小名字...出于同样的原因,我学会了不要这样做。毕竟大多数 IDE 都具有自动完成功能,因此使用长名称并不是真正的问题。
干杯
Well,
I usually name functions as:
variables/members as:
global variables:
Above all I try to keep all my naming to this standard. I really don't know what notation this follows, but I'm not a big fan of the Hungarian notation, so...
BTW, I see a lot of people going to some lengths to write small names which later on they wont understand... I learned to don't do that for the same reason. After all most IDE have auto-complete features so using long names isn't really an issue.
Cheers
用英语命名您的变量。
用英文评论。
但如果您必须使用不同的语言,则将其用于所有变量和注释。
不要将英语(关键字和库函数除外)与您的语言混合。
我讨厌看到像这样的代码:
Name your variables in english.
Comment in english.
But if you must use a different language, then use it for all variables and comments.
Don't mix english (other than keywords and library functions) with your language.
I hate to see code like: