当前变量和函数的命名方案是什么?

发布于 2024-08-12 01:04:28 字数 43 浏览 6 评论 0原文

是否有标准的方法来命名它们,或者是程序员的调用?

谢谢。

Is there a standard way to name them or is it programmer's call?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

谁与争疯 2024-08-19 01:04:28

使用贵公司的编码指南;如果它们已过时,则对它们提出质疑(即,尽管使用版本控制,但仍将更改列表保留在文件顶部)。

如果您是第一个程序员或者自己做程序员,请确定一套适合您的编码指南,将其记录下来并坚持下去。

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.

忆依然 2024-08-19 01:04:28

一些非常基本且几乎被普遍接受的东西:

  • 使用名词作为变量名称。

  • 使用动词作为函数名称。

这使得编码更容易理解。

除此之外,还有很多很多“规则” - 我怀疑其他答案会提供一些。

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.

漆黑的白昼 2024-08-19 01:04:28

以下是 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

黒涩兲箜 2024-08-19 01:04:28

嗯,

我通常将函数命名为:

MyFunctionToDoSomething();

变量/成员为:

my_var_to_accept_something;

全局变量:

MY_GLOBAL_VARIABLE;

最重要的是,我尝试将所有命名都遵循此标准。我真的不知道这后面是什么符号,但我不太喜欢匈牙利符号,所以......

顺便说一句,我看到很多人不遗余力地写出后来他们无法理解的小名字...出于同样的原因,我学会了不要这样做。毕竟大多数 IDE 都具有自动完成功能,因此使用长名称并不是真正的问题。

干杯

Well,

I usually name functions as:

MyFunctionToDoSomething();

variables/members as:

my_var_to_accept_something;

global variables:

MY_GLOBAL_VARIABLE;

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

ˇ宁静的妩媚 2024-08-19 01:04:28

用英语命名您的变量。
用英文评论

但如果您必须使用不同的语言,则将其用于所有变量和注释。
不要将英语(关键字和库函数除外)与您的语言混合。

我讨厌看到像这样的代码:

void  FreeT( void* puntero ) {

    unsigned long size;

    size = *(long*) ( (char*)puntero - offset );
//    memcpy( &size ,, offset );
    if ( !size ) return; 
    total_bloques --;
    total_alocado -= size ;
    free( (char*)puntero - offset );
}

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:

void  FreeT( void* puntero ) {

    unsigned long size;

    size = *(long*) ( (char*)puntero - offset );
//    memcpy( &size ,, offset );
    if ( !size ) return; 
    total_bloques --;
    total_alocado -= size ;
    free( (char*)puntero - offset );
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文