Java多線程——之一創建線程的四種方法

来源:https://www.cnblogs.com/guobm/archive/2019/03/29/10006031.html
-Advertisement-
Play Games

1.實現Runnable介面,重載run(),無返回值 2.繼承Thread類,覆寫run() 使用時通過調用Thread的start()(該方法是native),再調用創建線程的run(),不同線程的run方法裡面的代碼交替執行。 不足:由於java為單繼承,若使用線程類已經有個父類,則不能使用該 ...


1.實現Runnable介面,重載run(),無返回值

package thread;

public class ThreadRunnable implements Runnable {
    public void run() {
        for (int i = 0; i < 10; i++) {
            System.out.println(Thread.currentThread().getName() + ":" + i);
        }
    }
}


package thread;

public class ThreadMain {
    public static void main(String[] args) throws Exception {
        ThreadRunnable threadRunnable1 = new ThreadRunnable();
        ThreadRunnable threadRunnable2 = new ThreadRunnable();
        ThreadRunnable threadRunnable3 = new ThreadRunnable();
        ThreadRunnable threadRunnable4 = new ThreadRunnable();
        Thread thread1 = new Thread(threadRunnable1);
        Thread thread2 = new Thread(threadRunnable2);
        Thread thread3 = new Thread(threadRunnable3);
        Thread thread4 = new Thread(threadRunnable4);
        thread1.start();
        thread2.start();
        thread3.start();
        thread4.start();
    }
}

 

2.繼承Thread類,覆寫run()

使用時通過調用Thread的start()(該方法是native),再調用創建線程的run(),不同線程的run方法裡面的代碼交替執行。

不足:由於java為單繼承,若使用線程類已經有個父類,則不能使用該方式創建線程。

public class ThreadEx extends Thread {
    public void run() {
        for (int i = 0; i < 10; i++) {
            System.out.println(Thread.currentThread() + ":" + i);
        }
    }
}


public class ThreadMain {
    public static void main(String[] args)
    {
        ThreadEx threadEx = new ThreadEx();
        threadEx.start();
    }
}

  

3.實現Callable介面,通過FutureTask/Future來創建有返回值的Thread線程,通過Executor執行

補充:與實現Runnable介面類似,都是實現介面,不同的是該方式有返回值,可以獲得非同步執行的結果。

延伸:FutureTask是類,Future是介面。

package thread;

import java.util.concurrent.*;

public class ThreadCallable {
    public static void main(String[] args) throws Exception {
        FutureTask<Integer> futureTask = new FutureTask<Integer>(new Callable<Integer>() {
            public Integer call() throws Exception {
                for (int i = 0; i < 10; i++) {
                    System.out.println(Thread.currentThread().getName() + ":" + i);
                }
                return 1;
            }
        });
        Executor executor = Executors.newFixedThreadPool(1);
        ((ExecutorService) executor).submit(futureTask);

        //獲得線程執行狀態
        System.out.println(Thread.currentThread().getName() + ":" + futureTask.get());
    }
}

 

4.使用Executors創建ExecutorService,入參Callable或Future

補充:適用於線程池和併發

package thread;

import java.util.concurrent.Callable;
import java.util.concurrent.Executors;
import java.util.concurrent.ThreadFactory;

import static java.lang.Thread.sleep;

public class ThreadExecutors {
    private final String threadName;

    public ThreadExecutors(String threadName) {
        this.threadName = threadName;
    }

    private ThreadFactory createThread() {
        ThreadFactory tf = new ThreadFactory() {
            public Thread newThread(Runnable r) {
                Thread thread = new Thread();
                thread.setName(threadName);
                thread.setDaemon(true);
                try {
                    sleep(1000);
                }
                catch (InterruptedException e) {
                    e.printStackTrace();
                }
                return thread;
            }
        };
        return tf;
    }

    public Object runCallable(Callable callable) {
        return Executors.newSingleThreadExecutor(createThread()).submit(callable);
    }

    public Object runFunture(Runnable runnable) {
        return Executors.newSingleThreadExecutor(createThread()).submit(runnable);
    }
}



package thread;

import java.util.concurrent.*;

public class ThreadMain {
    public static void main(String[] args) throws Exception {
        ThreadExecutors threadExecutors = new ThreadExecutors("callableThread");
        threadExecutors.runCallable(new Callable() {
            public String call() throws Exception {
                return "success";
            }
        });

        threadExecutors.runFunture(new Runnable() {
            public void run() {
                System.out.println("execute runnable thread.");
            }
        });
    }
}

 

 

5 Runnable介面和Callable介面區別

1)兩個介面需要實現的方法名不一樣,Runnable需要實現的方法為run(),Callable需要實現的方法為call()。

2)實現的方法返回值不一樣,Runnable任務執行後無返回值,Callable任務執行後可以得到非同步計算的結果。

3)拋出異常不一樣,Runnable不可以拋出異常,Callable可以拋出異常。

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 問題如圖 需要添加一個導入 這樣就不會報錯了 ...
  • Maven生成jar包時, 怎樣把項目中依賴的jar包也包括進去? 這裡介紹2種方式: 使用 shade插件, 和使用 assembly插件. 另外擴展Maven安裝本地jar包到本地倉庫的方法、手動生成jar包的方法、Linux下運行jar包的幾種方式. ...
  • Hello Flask Flask簡介 Flask是一個使用Python編寫的輕量級Web應用框架。基於Werkzeug WSGI工具箱和Jinja2 模板引擎。Flask使用BSD授權。Flask被稱為“microframework”,因為它使用簡單的核心,用extension增加其他功能。Fla ...
  • 1、引入mybatis.jar mysql-connector-java-5.1.47.jar 2、新增資料庫資源文件datasource.properties 3、新增mybatis.xml 4、新增UserDomain.java 5、新增UserMapper.java 6、新增UserMappe ...
  • 什麼是動態代理呢?就是在java的運行過程中,動態的生成的代理類。(為了更熟悉的瞭解動態代理,你必須先熟悉代理模式,可點擊設計模式之代理模式 閱讀)我們知道java屬於解釋型語言,是在運行過程中,尋找位元組碼文件從而實現類載入的。但是位元組碼文件並不需要一定是硬碟中的class文件,也可以是來自網路、數 ...
  • @Data註解主要是幫助解決Setter 和 Getter以及 toString這種重覆的無腦工作 加入@Data註解可以直接幫助我們添加實體類相應的Setter 和 Getter以及 toString 需要自己添加jar包或pom依賴 然後我們可以直接調用相應的Setter 和 Getter以及 ...
  • 自定義 ThreadPoolExecutor 處理線程運行時異常 最近看完了 "ElasticSearch線程池模塊" 的源碼,感觸頗深,然後也自不量力地借鑒ES的 EsThreadPoolExecutor 重新造了一把輪子,對線程池的理解又加深了一些。在繼承 ThreadPoolExecutor實 ...
  • centos7下安裝python3總步驟分三步: 一、依賴解決: 1.安裝依賴包: yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gcc make ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...