java新手练习 流程控制break 标签

如下示例

label:
{
...
if(condition) break label; //跳出标签后语句块的末尾
...
}
原文地址:https://www.cnblogs.com/faberbeta/p/java-007.html