[並發]Java並發編程入門-1

來源:互聯網
上載者:User

【為什麼要使用並發?】
1. 提高程式運行速度
當在多核或者多處理器系統上運行時,並發程式能夠充分利用多個執行單元以加快速度;但是,當在單一處理器上運行並發程式時,則要分兩種情況:當程式中存在阻塞時(比如遇到I/O阻塞),此時並發可以提高速度。如果是耗CPU的操作並且無阻塞,則在單一處理器上運行並發程式不僅不會提高速度,反而會增加程式的已耗用時間,因為線程之間的切換增加了系統的開銷。在多處理器上運行時,雖然也有線程切換的開銷,但是並發本身帶來的效能提升遠遠高於這個開銷。
2. 簡化設計
因為在現實中,有些操作本身就是並發進行的,因此,採用並發進行程式設計,可以類比現實中的操作,簡化程式設計。

並發在Java中最常見的例子是GUI的事件驅動編程,採用並發可以明顯提高使用者介面的可響應行。如果不採用並發,則程式中所有事件處理常式不得不迴圈檢測使用者輸入,否則,在當前操作(有可能是非常耗時的操作)沒有完成之前,使用者的其他輸入將得不到響應。而採用並發,利用單獨線程執行響應使用者的輸入,則總可以保證每個事件能夠得到一定程式的響應。其實這還是要依靠於作業系統的並行存取模型,如果採用類似Windows的時間片機制,可以保證每個線程在一定時間內都能得到執行,但是如果採用Solaris的FIFO並行存取模型,則相同優先順序的任務將會是誰先來誰先執行完或者阻塞,然後後面的才能得到執行。

【在Java中如何使用線程】
兩種方法:
1. 定義一個類,實現Runnable介面,即實現run()方法以定義要在此線程執行的操作,然後使用此類的對象為參數建立一個Thread對象t,調用t.start()方法,即可執行此線程中的run()方法中定義的操作。
2. 直接繼承Thread類,重寫run()方法。

 1 public class SimpleThreadTest {
 2     /**
 3      * @param args
 4      */
 5     public static void main(String[] args) {
 6         // TODO Auto-generated method stub
 7          Thread t=new Thread(new Runnable(){
 8             public void run(){
 9                 int i=0;
10                 while(true){
11                     System.out.println("in the thread1: "+i);
12                     i++;
13                     if(i==5){
14                         break;
15                     }
16                 }
17             }
18         });
19         t.start();
20         for(int i=0;i<5;i++){
21             System.out.println("in the main thread: "+i);
22         }
23     }
24 }

運行結果:

 1 in the main thread: 0
 2 in the main thread: 1
 3 in the main thread: 2
 4 in the main thread: 3
 5 in the main thread: 4
 6 in the thread1: 0
 7 in the thread1: 1
 8 in the thread1: 2
 9 in the thread1: 3
10 in the thread1: 4

範例程式碼中使用了匿名類,實際使用時,可以定義一個新類,實現Runnable介面或者直接繼承Thread類,重寫run()方法。

to be continued......

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.