Java線程函數在使用的時候需要大家詳細的看看相關代碼。本文就向大家介紹有關Java線程函數在使用中的問題。希望大家有所收獲。那麼首先我們來看看yIEld ()的使用方法。
1) 通過yield ()Java線程函數,可使線程進入可執行狀態,排程器從可執行狀態的線程中重新進行排程。所以調用了yIEld()的Java線程函數也有可能馬上被執行。
2) 當調用yIEld ()Java線程函數後,線程不會釋放它的“鎖標志”。
- class TestThreadMethod extends Thread{
- public static int shareVar = 0;
- public TestThreadMethod(String name){super(name);
- }
- public synchronized void run(){for(int i=0; i<4; i++){
- System.out.print(Thread.currentThread().getName());
- System.out.println(" : " + i);
- Thread.yIEld();
- }}
- }
- public class TestThread{public static void main(String[] args){
- TestThreadMethod t1 = new TestThreadMethod("t1");
- TestThreadMethod t2 = new TestThreadMethod("t2");
- t1.start();
- t1.start(); //(1)
- //t2.start(); (2)
- }
- }
運行結果為:
- t1 : 0
- t1 : 1
- t1 : 2
- t1 : 3
- t1 : 0
- t1 : 1
- t1 : 2
- t1 : 3
從結果可知調用yIEld()時並不會釋放對象的“鎖標志”。
如果把代碼(1)注釋掉,並去掉代碼(2)的注釋,結果為:
- t1 : 0
- t1 : 1
- t2 : 0
- t1 : 2
- t2 : 1
- t1 : 3
- t2 : 2
- t2 : 3
從結果可知,雖然t1線程調用了yIEld(),但它馬上又被執行了。以上就是對Java線程函數的詳細介紹。