翻译进度
1
分块数量
0
参与人数
Terminating statements
这是一篇协同翻译的文章,你可以点击『我来翻译』按钮来参与翻译。
A terminating statement prevents execution of all statements that lexically appear after it in the same block. The following statements are terminating:
- A "return" or "goto" statement.
- A call to the built-in function
panic
. - A block in which the statement list ends in a terminating statement.
- An "if" statement in which:
- the "else" branch is present, and
- both branches are terminating statements.
- A "for" statement in which:
- there are no "break" statements referring to the "for" statement, and
- the loop condition is absent.
- A "switch" statement in which:
- there are no "break" statements referring to the "switch" statement,
- there is a default case, and
- the statement lists in each case, including the default, end in a terminating statement, or a possibly labeled "fallthrough" statement.
- A "select" statement in which:
- there are no "break" statements referring to the "select" statement, and
- the statement lists in each case, including the default if present, end in a terminating statement.
- A labeled statement labeling a terminating statement.
All other statements are not terminating.
A statement list ends in a terminating statement if the list is not empty and its final non-empty statement is terminating.
本文中的所有译文仅用于学习和交流目的,转载请务必注明文章译者、出处、和本文链接
我们的翻译工作遵照 CC 协议,如果我们的工作有侵犯到您的权益,请及时联系我们。