GoTo标签的命名约定

dr.*_*vil 5 label coding-style goto naming-conventions

你如何命名你的GoTo标签?我经常使用很少,所以我很难找到好名字.

请不要使用经典的'goto is evil and eat your code alive discussion'

Ass*_*vie 5

在批处理文件中,我经常使用 HELL。

喜欢:

some_command || GOTO HELL

...

HELL: 

echo "Ouch, Hot!"
Run Code Online (Sandbox Code Playgroud)


fin*_*nnw 5

我的标签名称几乎总是属于以下模式之一:

  • 称为"重启",用于重新启动一组嵌套循环,因为更改使某些内容无效
  • 在return语句之前称为"exit"或"return",并且仅在那里因为trace语句记录了调试的返回值
  • 与它替换的布尔变量具有相同的名称