编写函数的最佳格式是什么?
哪种格式是最佳实践?
格式A
function FunctionA ()
{
while ()
{
>>some code<<
}
if ()
{
>>some code<<
}
else if ()
{
>>some code<<
}
}
格式B
function FunctionB () {
while () {
>>some code<<
}
if () {
>>some code<<
} else if () {
>>some code<<
}
}
which format is best practice?
format A
function FunctionA ()
{
while ()
{
>>some code<<
}
if ()
{
>>some code<<
}
else if ()
{
>>some code<<
}
}
format B
function FunctionB () {
while () {
>>some code<<
}
if () {
>>some code<<
} else if () {
>>some code<<
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这一切都取决于您的喜好。没有真正的“最好”。
我更喜欢格式 A,因为我可以将注释放在左大括号提供的空间中。
例如。
但有些人可能更喜欢格式 B,因为它更紧凑。
但其他人可能更喜欢像这样更加混乱的代码:
It's all up to your preference. There is no real "best".
I prefer format A because I can put comments in the space provided by the opening braces.
eg.
But some people may prefer the format B as it is more compact.
But others may prefer even more obfuscated code like this:
这并不重要,只要您坚持一种风格,并且在一个项目中多人同意一种风格并且所有人都使用该风格即可。
It doesn't really matter, as long as you adhere to one style, and when in a project with multiple people agree on one style and all use that style.