Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android官方開發文檔Training系列課程中文版:線程執行操作之線程池操作

Android官方開發文檔Training系列課程中文版:線程執行操作之線程池操作

編輯:關於Android編程

原文地址:http://android.xsoftlab.net/training/multiple-threads/run-code.html

上節課我們學習了如何定義一個類用於管理線程以及任務。這節課將會學習如何在線程池中運行任務。要做到這一點,只需要往線程池的工作隊列中添加任務即可。當一條線程處於閒置狀態時,那麼ThreadPoolExecutor會從任務隊列中取出一條任務並放入該線程中運行。

這節課還介紹了如何停止一個正在運行中的任務。如果在任務開始後,可能發現這項任務並不是必須的,那麼就需要用到任務取消的功能了。這樣可以避免浪費處理器的時間。舉個例子,如果你正從網絡上下載一張圖像,如果偵測到這張圖像已經在緩存中了,那麼這時就需要停止這項網絡任務了。

在線程池中的線程內運行任務

為了在指定的線程池中啟動一項線程任務,需要將Runnable對象傳給ThreadPoolExecutor的execute()方法。這個方法會將任務添加到線程池的工作隊列中去。當其中一個線程變為閒置狀態時,那麼線程池管理器會從隊列中取出一個已經等待了很久的任務,然後放到這個線程中運行:

public class PhotoManager {
    public void handleState(PhotoTask photoTask, int state) {
        switch (state) {
            // The task finished downloading the image
            case DOWNLOAD_COMPLETE:
            // Decodes the image
                mDecodeThreadPool.execute(
                        photoTask.getPhotoDecodeRunnable());
            ...
        }
        ...
    }
    ...
}

當ThreadPoolExecutor啟動一個Runnable時,它會自動調用Runnable的run()方法。

中斷執行中的代碼

如果要停止一項任務,那麼需要中斷該任務所在的線程。為了可以預先做到這一點,那麼需要在任務創建時存儲該任務所在線程的句柄:

class PhotoDecodeRunnable implements Runnable {
    // Defines the code to run for this task
    public void run() {
        /*
         * Stores the current Thread in the
         * object that contains PhotoDecodeRunnable
         */
        mPhotoTask.setImageDecodeThread(Thread.currentThread());
        ...
    }
    ...
}

我們可以調用Thread.interrupt()方法來中斷一個線程。這裡要注意Thread對象是由系統控制的,系統會在應用進程的范圍之外修改它們。正因為這個原因,在中斷線程之前,需要對線程的訪問加鎖。通常需要將這部分代碼放入同步代碼塊中:

public class PhotoManager {
    public static void cancelAll() {
        /*
         * Creates an array of Runnables that's the same size as the
         * thread pool work queue
         */
        Runnable[] runnableArray = new Runnable[mDecodeWorkQueue.size()];
        // Populates the array with the Runnables in the queue
        mDecodeWorkQueue.toArray(runnableArray);
        // Stores the array length in order to iterate over the array
        int len = runnableArray.length;
        /*
         * Iterates over the array of Runnables and interrupts each one's Thread.
         */
        synchronized (sInstance) {
            // Iterates over the array of tasks
            for (int runnableIndex = 0; runnableIndex < len; runnableIndex++) {
                // Gets the current thread
                Thread thread = runnableArray[taskArrayIndex].mThread;
                // if the Thread exists, post an interrupt to it
                if (null != thread) {
                    thread.interrupt();
                }
            }
        }
    }
    ...
}

在多數情況下,Thread.interrupt()會使線程立刻停止。然而,它只會將那些正在等待的線程停下來,它並不會中止CPU或網絡任務。為了避免使系統變慢或卡頓,你應當在開始任意一項操作之前測試是否有中斷請求:

/*
 * Before continuing, checks to see that the Thread hasn't
 * been interrupted
 */
if (Thread.interrupted()) {
    return;
}
...
// Decodes a byte array into a Bitmap (CPU-intensive)
BitmapFactory.decodeByteArray(
        imageBuffer, 0, imageBuffer.length, bitmapOptions);
...
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved