Break语句
break终结当前迭代中for, forloop, foreach, foreachkey,while或 do-while 循环语句的执行。也可终结switch-case模块。继续执行循环中的第一行代码或者switch-case模块的第一行代码。
语法
break;
示例
for(int i = 0; i < 10; i++) {
if(i == 3) break;
log.message("%d ",i);
}
// 此示例的输出结果为: 0 1 2
最新更新:
2019-04-30
Help improve this article
Was this article helpful?
(or select a word/phrase and press Ctrl+Enter)