码迷,mamicode.com
首页 > 编程语言 > 详细

线程休眠

时间:2018-02-19 21:45:36      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:except   read   stat   blog   art   rgs   rup   exce   wait   

package Chapter7.ShiLi.Demo6;

public class ThreadDemo {
  public static void main(String[] args) {
  System.out.println("Wait");
  Wait.bySec(5);
  System.out.println("start");
  }
}

 

package Chapter7.ShiLi.Demo6;

public class Wait {
  public static void bySec(long s){
  for (int i = 0; i < s; i++) {
  System.out.println(i+1+"秒");
  try {
    Thread.sleep(1000);//睡眠1秒
  } catch (InterruptedException e) {
    e.printStackTrace();
  }
 }

  }
}

线程休眠

标签:except   read   stat   blog   art   rgs   rup   exce   wait   

原文地址:https://www.cnblogs.com/chongsheng456-com/p/8454413.html

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