1、跳出整个循环操作for(int i=0;i<count;i++){if(tt[count]==null || tt[count]=="") break; //跳出整个循环... //执行其余操作} 2、跳出某一次循环的操作for(int i=0;i<count;i++){if (tt[count]==null || tt[count] =="") continue; //跳出本次循环... //执行以后的操作} 相关文章: 2022-12-23 2022-12-23 2021-12-02 2021-12-02 2021-11-23 2021-12-25 2021-12-07 2021-08-26