码迷,mamicode.com
首页 > 其他好文 > 详细

自己写的一段重试代码

时间:2014-09-24 19:29:27      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:blog   java   ar   div   2014   art   on   c   log   

public class TestRetry {

	public static void main(String[] args) {
		retry(5);
	}
	
	private static void retry(int maxCount) {
		int count = 0;
		boolean result = false;
		do {
			count++;
			System.out.println("count="+count);
/*			if(count==2) {
				result = true;
			}*/
		} while (count<maxCount && result == false);
	}
}

自己写的一段重试代码

标签:blog   java   ar   div   2014   art   on   c   log   

原文地址:http://www.cnblogs.com/lcchuguo/p/3991072.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!