中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

java中有哪些創建線程的方法

發布時間:2021-06-25 09:27:15 來源:億速云 閱讀:112 作者:chen 欄目:大數據

這篇文章主要介紹“java中有哪些創建線程的方法”,在日常操作中,相信很多人在java中有哪些創建線程的方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”java中有哪些創建線程的方法”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

繼承Thread類

public class ExtendsThreadTest extends Thread {
    @Override
    public void run() {
        System.out.println("thread is running!");
    }
    public static void main(String[] args) {
        ExtendsThreadTest et1 = new ExtendsThreadTest();
        et1.start();
    }
}

實現Runnable接口

public class RunnableTest implements Runnable{
    @Override
    public void run() {
        System.out.println("thread is running!");
    }
    public static void main(String[] args) {
        Thread t1 = new Thread(new RunnableTest());
        t1.start();
    }
}

匿名內部類的兩種寫法

public class App {
    public static void main(String[] args){
        new Thread(new Runnable() {
            @Override
            public void run() {
                System.out.println("thread1 is running!");
            }
        }){}.start();

        new Thread(){
            @Override
            public void run(){
                System.out.println("thread2 is running!");
            }
        }.start();
    }
}

基于java.util.concurrent.Callable工具類的實現,帶返回值

public class CallableTest {
    public static void main(String[] args) throws Exception {
        Callable<Integer> call = new Callable<Integer>() {
            @Override
            public Integer call() throws Exception {
                System.out.println("thread is running!");
                return 1;
            }
        };
        FutureTask<Integer> task = new FutureTask<>(call);
        Thread t =  new Thread(task);
        t.start();
    }
}

基于java.util.Timer工具類的實現

public class TimerTest {
    public static void main(String[] args) throws Exception {
        Timer timer = new Timer();
        timer.schedule(new TimerTask() {
            @Override
            public void run() {
                System.out.println("thread is running!");
            }
        }, new Date());
    }
}

基于java.util.concurrent.Executors工具類,基于線程池的實現

public class ThreadPoolTest {
    public static void main(String[] args) {
        // 創建線程池
        ExecutorService threadPool = Executors.newFixedThreadPool(10);
        while(true) {
            threadPool.execute(new Runnable() { // 提交多個線程任務,并執行
                @Override
                public void run() {
                    System.out.println(Thread.currentThread().getName() + " is running ..");
                    try {
                        Thread.sleep(3000);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            });
        }
    }
}

到此,關于“java中有哪些創建線程的方法”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

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

AI

宁城县| 龙州县| 桦甸市| 涿鹿县| 奉节县| 阳原县| 新昌县| 晋宁县| 舟山市| 沂水县| 临沂市| 凤凰县| 大竹县| 涟源市| 禹城市| 红安县| 乐业县| 慈利县| 卢湾区| 惠安县| 大石桥市| 二连浩特市| 松原市| 新闻| 武冈市| 淮北市| 本溪| 汕头市| 鹿泉市| 织金县| 惠东县| 崇礼县| 揭东县| 库车县| 龙南县| 东乡族自治县| 道孚县| 家居| 青神县| 亚东县| 天水市|