名称首字母采用驼峰式命名,首字母小写
许多编码标准建议使用驼峰命名法和小写首字母作为变量和函数名称。如果出于“语法原因”(例如,因为它是一个名称)而应将首字母大写,那么标准做法是什么?例如,我应该写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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于您的语言以及您询问的对象。通常,您可以使用“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