JAVA for循环比如我的长度是10000,每循环到500个的时候休眠一段时间,接着500*n+1开始执行?
1个回答
2016-11-10
展开全部
for(int i=1; i<=10000; i++){
///////////////////////////
if(i%500==0){
try{Thread.sleep(5000);}catch(InterruptedException ex){}
}
///////////////////
}
///////////////////////////
if(i%500==0){
try{Thread.sleep(5000);}catch(InterruptedException ex){}
}
///////////////////
}
追问
接着500*n+1开始执行呢?
追答
for(int i=1; i<=10000; i++){
///////////////////////////
if(i%500==0){
i++;
try{Thread.sleep(5000);}catch(InterruptedException ex){}
}
///////////////////
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询