翻译进度
1
分块数量
0
参与人数

Terminating statements

这是一篇协同翻译的文章,你可以点击『我来翻译』按钮来参与翻译。


terminating statement prevents execution of all statements that lexically appear after it in the same block. The following statements are terminating:

  1. "return" or "goto" statement.
  2. A call to the built-in function panic.
  3. block in which the statement list ends in a terminating statement.
  4. An "if" statement in which:
    • the "else" branch is present, and
    • both branches are terminating statements.
  5. "for" statement in which:
    • there are no "break" statements referring to the "for" statement, and
    • the loop condition is absent.
  6. "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.
  7. "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.
  8. labeled statement labeling a terminating statement.

All other statements are not terminating.

statement list ends in a terminating statement if the list is not empty and its final non-empty statement is terminating.

本文章首发在 LearnKu.com 网站上。

本文中的所有译文仅用于学习和交流目的,转载请务必注明文章译者、出处、和本文链接
我们的翻译工作遵照 CC 协议,如果我们的工作有侵犯到您的权益,请及时联系我们。

讨论数量: 0
发起讨论 只看当前版本


暂无话题~