赞
踩
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");//主线程
}
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。