当前位置:   article > 正文

java中线程的暂停_java 让线程停止5分钟

java 让线程停止5分钟

线程的暂停

Java中线程暂停的方法是sleep方法,并且sleep方法是Thread类的静态方法。
下面以代码的形式,使用sleep方法:

package Java多线程;

public class Demo1 {
    public static   void main(String[] args) throws InterruptedException {
        for (int i = 0; i <5 ; i++) {
            Thread.sleep(2000);
            System.out.println(Thread.currentThread().getName()+"hello");//主线程
        }
        for (int i = 0; i <5 ; i++) {
            System.out.println(Thread.currentThread().getName()+"world");//主线程
        }
    }

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/煮酒与君饮/article/detail/1004270
推荐阅读
相关标签
  

闽ICP备14008679号