线程的休眠

所谓的线程休眠指的就是让线程的执行速度稍微的变慢一点。

休眠的方法:

public static void sleep(long millis,int nanos)throws InterruptedException

观察休眠的特点:

class MyThread implements Runnable{

	@Override
	public void run() {
		for(int x = 0 ; x < 10000 ; x ++){
			try {
				Thread.sleep(1000);//休眠1秒
			} catch (InterruptedException e) {
				e.printStackTrace();
			}
			System.out.println(Thread.currentThread().getName() + ", x = " + x );
		}
	}
}
public class Demo{
	public static void main (String [] args){
		MyThread mt = new MyThread() ;
		new Thread(mt,"线程A").start();
	}
}
默认情况下,在休眠的时候如果设置了多个线程对象,那么所有的线程对象将一起进入到run()方法(所谓的一起进入实际上是因为先后顺序太短了,但实际上有区别。)

正因为这一点细微的差别,有可能造成我们数据的错误!

你可能感兴趣的:(线程的休眠)