break跳转到指定位置

NO.1: for(int i=0;i<10;i++){
if(i==3){
break NO.1;// 跳出上面这个for循环
}

原文地址:https://www.cnblogs.com/torchstar/p/14609156.html