android非同步訊息處理機制

來源:互聯網
上載者:User

標籤:

android非同步訊息處理主要由四部分組成:Handler,Looper,Message,MessageQueue

Message:線程之間傳遞的訊息,可以在內部攜帶少量訊息

MessageQueue:

Looper:每個線程有且最多隻能有一個Looper對象,它是一個ThreadLocal(執行緒區域儲存物件);

               (ThreadLocal:實現一個執行緒區域儲存物件,對於一個變數,每個線程都要各自的值,所有線程共用相同的對象,但是其中一個線程中的變數改變不會影響其他線程中該變數的值)

/** * Implements a thread-local storage, that is, a variable for which each thread * has its own value. All threads share the same {@code ThreadLocal} object, * but each sees a different value when accessing it, and changes made by one * thread do not affect the other threads. The implementation supports * {@code null} values. * * @see java.lang.Thread * @author Bob Lee */

               Looper內部維護了一個MQ,loop()方法調用後線程開始不斷從隊列中取出訊息執行

Handler:1.用於處理和發送訊息;

                2.建立時關聯一個Looper和Looper中的MQ;

                3.一個線程可以有多個Handler;

                4.Handler可在任意線程發送訊息,訊息會被添加到關聯的MQ中;

                5.Handler是在它關聯的Looper線程中處理訊息的。


android非同步訊息處理機制

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.