break
和 continue
如果需要立即启动 下一次迭代,请使用 continue
。
If you want to exit any kind of loop early, use break
. For loop
, this can take an optional expression that becomes the value of the loop
expression.
break
和 continue
如果需要立即启动 下一次迭代,请使用 continue
。
If you want to exit any kind of loop early, use break
. For loop
, this can take an optional expression that becomes the value of the loop
expression.