名称首字母采用驼峰式命名,首字母小写

发布于 2025-01-01 04:33:43 字数 154 浏览 0 评论 0原文

许多编码标准建议使用驼峰命名法和小写首字母作为变量和函数名称。如果出于“语法原因”(例如,因为它是一个名称)而应将首字母大写,那么标准做法是什么?例如,我应该写KnuthPlassAlgorithm还是knuthPlassAlgorithm

Many coding standards recommend using camelCase with lowercase initial for variable and function names. What is the standard practice if the initial should be uppercase for "grammatical reasons", e.g., because it is a name? For instance, shall I write KnuthPlassAlgorithm or knuthPlassAlgorithm?

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

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

发布评论

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

评论(1

迟到的我 2025-01-08 04:33:43

这取决于您的语言以及您询问的对象。通常,您可以使用“camelCase”局部变量和“ProperCase”FunctionNames 或 ProtectedMemberVariables。人们通常使用下划线和驼峰式大小写来表示 _privateVariables。如果你不想考虑这个问题并且你正在使用 VS 和 C#,你应该查看 stylecop

It depends on your language and who you ask. Generally you "camelCase" local variables and "ProperCase" FunctionNames or ProtectedMemberVariables. Often people use an underscore then camel case for _privateVariables. If you want to not have to think about it and you are using VS and C# you should check out stylecop

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