91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

泛型Java類中的泛型類型參數化線程池使用

發布時間:2024-10-24 18:42:48 來源:億速云 閱讀:79 作者:小樊 欄目:編程語言

在Java中,我們可以使用泛型來創建線程池,這樣可以提高代碼的可重用性和類型安全。下面是一個使用泛型類型參數化線程池的示例:

import java.util.concurrent.*;

public class GenericThreadPool<T> {
    private ThreadPoolExecutor executor;

    public GenericThreadPool(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue) {
        executor = new ThreadPoolExecutor(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue);
    }

    public void execute(Callable<T> task) throws InterruptedException {
        Future<T> future = executor.submit(task);
        // 可以在這里處理future,例如獲取任務執行結果
    }

    public <U> void execute(Runnable task, U result) {
        executor.execute(() -> {
            try {
                task.run();
            } finally {
                // 將結果傳遞給任務執行者
                ((Consumer<U>) task).accept(result);
            }
        });
    }

    public void shutdown() {
        executor.shutdown();
    }

    public List<Runnable> shutdownNow() {
        return executor.shutdownNow();
    }

    public boolean isShutdown() {
        return executor.isShutdown();
    }

    public boolean isTerminated() {
        return executor.isTerminated();
    }

    public boolean awaitTermination(long timeout, TimeUnit unit) throws InterruptedException {
        return executor.awaitTermination(timeout, unit);
    }
}

在這個示例中,我們創建了一個名為GenericThreadPool的泛型類,它接受一個類型參數T。這個類使用ThreadPoolExecutor來創建一個線程池,并提供了execute方法來提交任務。execute方法有兩個重載版本,一個接受Callable<T>類型的任務,另一個接受Runnable類型的任務和結果。

要使用這個泛型線程池,你可以像下面這樣創建一個實例:

public class Main {
    public static void main(String[] args) {
        GenericThreadPool<String> stringThreadPool = new GenericThreadPool<>(
                2, 4, 60, TimeUnit.SECONDS, new LinkedBlockingQueue<>(10)
        );

        // 提交Callable任務
        stringThreadPool.execute(() -> {
            System.out.println("Hello, " + Thread.currentThread().getName());
            return "Task result";
        });

        // 提交Runnable任務并傳遞結果
        stringThreadPool.execute(() -> {
            System.out.println("Another task");
        }, "Result for another task");

        // 關閉線程池
        stringThreadPool.shutdown();
    }
}

這個示例中,我們創建了一個GenericThreadPool實例,用于處理String類型的結果。我們提交了一個Callable任務和一個Runnable任務,并在提交Runnable任務時傳遞了一個結果。最后,我們調用shutdown方法來關閉線程池。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江城| 石首市| 务川| 固原市| 蓬莱市| 黄平县| 涞水县| 依安县| 舒城县| 青浦区| 泰兴市| 和平区| 三原县| 淮滨县| 金寨县| 惠水县| 营口市| 龙州县| 新巴尔虎右旗| 区。| 泰顺县| 伊川县| 红桥区| 白城市| 尉犁县| 三河市| 郑州市| 泸州市| 临夏市| 崇文区| 三都| 定西市| 府谷县| 曲麻莱县| 安顺市| 库车县| 大邑县| 宜春市| 济南市| 大厂| 德庆县|