java中不用break跳出for循环的方式,如下: for(int i = 0; i < array.length; i++) { if(条件满足) { 执行语句; i = array.length; //跳出循环 } }