一、對於sleep()方法,咱們首先要知道該方法是屬於Thread類中的。而wait()方法,則是屬於Object類中的。ide
二、sleep()方法致使了程序暫停執行指定的時間,讓出cpu給其餘線程,可是他的監控狀態依然保持着,當指定的時間到了又會自動恢復運行狀態。在調用sleep()方法的過程當中,線程不會釋放對象鎖。而當調用wait()方法的時候,線程會放棄對象鎖,進入等待此對象的等待鎖定池,只有針對此對象調用notify()方法後本線程才進入對象鎖定池準備spa
獲取對象鎖進入運行狀態。線程
eg:orm
public class TestThread {對象
public static void main(String [] args)it
{io
new Thread(new Thread1()).start();class
try {thread
Thread.sleep(5000);監控
} catch (InterruptedException e) {
e.printStackTrace();
}
new Thread(new Thread2()).start();
}
private static class Thread1 implements Runnable{
@Override
public void run() {
synchronized(TestThread.class)
{
System.out.println("線程一啓動。。。。。");
System.out.println("線程一wait.....");
try {
TestThread.class.wait();
} catch (Exception e) {
// TODO: handle exception
}
System.out.println("線程一在此運行。。。。。");
System.out.println("線程一結束.....");
}
}
}
private static class Thread2 implements Runnable{
@Override
public void run() {
synchronized (TestThread.class) {
System.out.println("thread2啓動....");
System.out.println("thread2 is sleep....");
//只有針對此對象調用notify()方法後本線程才進入對象鎖定池準備獲取對象鎖進入運行狀態。
TestThread.class.notify();
//==================
//區別
//若是咱們把代碼:TestD.class.notify();給註釋掉,即TestD.class調用了wait()方法,可是沒有調用notify()
//方法,則線程永遠處於掛起狀態。
try {
//sleep()方法致使了程序暫停執行指定的時間,讓出cpu給其餘線程,
//可是他的監控狀態依然保持者,當指定的時間到了又會自動恢復運行狀態。
//在調用sleep()方法的過程當中,線程不會釋放對象鎖。
Thread.sleep(5000);
} catch (Exception e) {
e.printStackTrace();
}
System.out.println("thread2 is going on....");
System.out.println("thread2 is over!!!");
}
}
}
}
結果:
線程一啓動。。。。。
線程一wait.....
thread2啓動....
thread2 is sleep....
thread2 is going on....
thread2 is over!!!
線程一在此運行。。。。。
線程一結束.....
若是註釋掉代碼:
TestThread.class.notify();
結果:
線程一啓動。。。。。
線程一wait.....
thread2啓動....
thread2 is sleep....
thread2 is going on....
thread2 is over!!!