溫馨提示×

溫馨提示×

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

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

java中JUC多線程的方式有哪些

發(fā)布時間:2021-11-17 09:30:19 來源:億速云 閱讀:142 作者:小新 欄目:大數(shù)據(jù)

這篇文章將為大家詳細(xì)講解有關(guān)java中JUC多線程的方式有哪些,小編覺得挺實(shí)用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.*;

/**
 * @Author:MuJiuTian
 * @Description:
 * @Date: Created in 下午2:42 2019/7/29
 */
public class Test1 {

    public static void main(String[] args) throws ExecutionException, InterruptedException {
        //testThreadPool();
        testThreadPool();
    }

    public static void testThreadPool(){
        ExecutorService executorService = Executors.newFixedThreadPool(10);
        List<Future<List<Integer>>> list= new ArrayList<>();
        for (int i = 0;i<10; i++){
            Future<List<Integer>> future = executorService.submit(new MyCallable());
            list.add(future);
        }

        list.forEach(n -> {
            try {
                System.out.println(n.get());
            } catch (InterruptedException e) {
                e.printStackTrace();
            } catch (ExecutionException e) {
                e.printStackTrace();
            }
        });

    }

    public static void testMyCallable() throws ExecutionException, InterruptedException {
        FutureTask futureTask = new FutureTask<>(new MyCallable());
        new Thread(futureTask).start();
        List<Integer> list = (List<Integer>) futureTask.get();
        list.forEach(n -> System.out.println(n));
    }

    public static void testMyRunnable(){
        new Thread(new MyRunnable()).start();
    }

    public static void testMythread(){
        new MyThread().start();
    }

}

//多線程第一種方式:繼承Thread類
class MyThread extends Thread {
    @Override
    public void run() {
        System.out.println("輸出mythread");
    }
}

//多線程第二種方式:java單繼承,繼承了其他類,只能實(shí)現(xiàn)根類Runnable
class MyRunnable implements Runnable {
    @Override
    public void run() {
        System.out.println("輸出沒有runnable");
    }
}

//多線程第三種方式:Callable接口
class MyCallable implements Callable<List<Integer>>{
    @Override
    public List<Integer> call() throws Exception {
        List<Integer> list = new ArrayList<>();
        for (int i = 0; i<10; i++){
            list.add(i);
        }
        return list;
    }
}

2、多線程并發(fā)

線程的常用方法介紹

JAVA多線程之間實(shí)現(xiàn)同步+多線程并發(fā)同步解決方案

Synchronized、ReentrantLock(可重入鎖)、ReentrantReadWriteLock(讀寫鎖)

CyclicBarrier、Semaphore、concurrentHashMap和BlockingQueue。

關(guān)于“java中JUC多線程的方式有哪些”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI