命名约定:退出状态、退出代码或返回代码?

发布于 2024-09-24 15:51:27 字数 273 浏览 1 评论 0原文

这可能是一个愚蠢的问题,但是退出代码变量的正确命名应该是什么?

  • exit_code
  • exit_status
  • return_code
  • ...还有别的吗?

我指的是应用程序或函数退出代码。

我知道它们都是同义词,但最好有一个同义词,只是为了一致性

应该是哪一个,为什么?

This is maybe a silly question but what should be the proper naming for the exit code variable?

  • exit_code
  • exit_status
  • return_code
  • ...something else?

I'm referring to both application or function exit codes.

I know that all of them are synonyms but it would be nice to have a single one, just for consistency.

Which one should it be, and why?

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

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

发布评论

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

评论(2

独孤求败 2024-10-01 15:51:27

使用与团队中其他开发人员相同的名称。如果这不明显,请同意他们的观点。

然后继续编程,不要为这类事情烦恼。

Use the same name as the other developers in your team. If that's not obvious, agree one with them.

Then get on with programming and don't sweat this sort of stuff.

尐籹人 2024-10-01 15:51:27

在我们最新的应用程序中,我们使用 ReturnCode。对于我们中的一些人来说,“退出”这个词会让人感觉方法调用中出了问题。 Return 更加中性,可以自然地用来表示正面和负面结果。

总的来说,我认为你可以选择任何你想要的,只要你保持一致。

In our latest application we are using ReturnCode. For some of us the word "Exit" brought up a feeling that something went wrong in the method call. Return is more neutral and it can be used naturally to represent both the positive and negative results.

Overall I think that you can choose anything you want, as long as you are consistent.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文