java 多线程实现方式

package com.example.demo.demo.ThreadDemo;

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

/**
 * @description: 线程demo 测试
 * 并发三要素: 原子性 可见性 有序性
 * 出现线程安全的原因:
 * 线程切换带来原子性问题  缓存导致可见性 编译优化带来有序性
 *
 * 阿里手册 更推荐使用 ThreadPoolExecutor 创建线程,并且可以使用线程池技术
 * Executors 创建线程池有缺陷:newFixedThreadPool 和 newSingleThreadExecutor:
 * 主要问题是堆积的请求处理队列可能会耗费非常大的内存,甚至 OOM。
 *
 * newCachedThreadPool 和 newScheduledThreadPool:
 * 主要问题是线程数最大数是 Integer.MAX_VALUE,可能会创建数量非常多的线程,甚至 OOM。
 * @create: 2020-03-27 09:41
 **/
public class ThreadDemo {
    public static void main(String[] args) {
        //创建线程的方式: 1 Thread 2 Runnable  3 线程池 ThreadPoolExecutor  4 CallAble Future CallAble 可以有返回值

        // 线程池方式
        ExecutorService executorService = Executors.newCachedThreadPool();
        executorService.execute(new Runnable() {
            @Override
            public void run() {
                //do something
                System.out.println("Thread 创建多线程");
            }
        });

        //参数含义:corePoolSize :核心线程数,线程数定义了最小可以同时运行的线程数量。
        // maximumPoolSize: 线程池中允许存在的工作线程的最大数
        // keepAliveTime:线程池内数量大于 corePoolSize 时,如果这时没有新任务提交,核心线程外的线程不会立刻销毁,而是会等待存活,直到等待时间超过 keppAliveTime后才会被回收销毁
        // TimeUnit: 等待时间单位
        // workQueue: 当任务来时会判断当前运行的线程数是否大于 核心线程数corePoolSize 如果大于则放入等待队列中
        // threadFactory 为线程池提供创建新线程的线程工厂
        //handler   线程池任务队列超过 maxinumPoolSize 之后的拒绝策略
        ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor(3,100,60,TimeUnit.MINUTES,new ArrayBlockingQueue<>(20));

        //线程 Thread 方式
        Thread thread = new Thread(new Runnable() {
            @Override
            public void run() {
                System.out.println("Runnable 创建多线程");
            }
        });
        thread.start();
        // Runnable 接口
        RunDemo runDemo = new RunDemo();
        Thread t1 = new Thread(runDemo);
        t1.start();



        //Callable 接口FutureTask 实现多线程
        //使用线程池 submit
        // ExcutorService submit() 与execute()区别
        // submit 有返回值并且可以捕捉到线程的异常。参数也不一致。  execute() 没有返回值,也不可以捕捉异常
        MyCallAble myCallAble = new MyCallAble();
        List<Future<String>> list = new ArrayList<>();
        for (int i = 0; i < 10; i++) {
            /*FutureTask<String> futureTask = new FutureTask<String>(myCallAble);
            executorService.execute(futureTask);*/
            Future<String> submit = executorService.submit(myCallAble);
            list.add(submit);
        }
        executorService.shutdown();
        for (Future<String> future : list){
            try {
                String s = future.get();
                System.out.println(s);
            } catch (InterruptedException e) {
                e.printStackTrace();
            } catch (ExecutionException e) {
                e.printStackTrace();
                //有异常关闭
                executorService.shutdownNow();
            }
        }


       /*
       利用 Thread 执行 FutureTask
       MyCallAble myCallAble = new MyCallAble();
        FutureTask<String> futureTask = new FutureTask<String>(myCallAble);
        Thread thread1 = new Thread(futureTask);
        thread1.start();
        try {
            String s = futureTask.get();
            System.out.println(s);
        } catch (InterruptedException e) {
            e.printStackTrace();
        } catch (ExecutionException e) {
            e.printStackTrace();
        }*/

    }

    static class RunDemo implements Runnable{

        @Override
        public void run() {
            //do something
        }
    }

}

class MyCallAble implements Callable<String>{
    public volatile int count;
    @Override
    public String call() throws Exception {
        do{
            if(count == 3)
                throw new RuntimeException("有内鬼,终止交易!");
            System.out.println(++ count);
        }while (count < 10);
        return Thread.currentThread().getName() + count + " callAble 返回的值";
    }
}

自定义线程池:

package com.example.demo.demo.ThreadDemo;

import java.util.concurrent.*;
import java.util.concurrent.atomic.AtomicInteger;

/**
 * @description: 自定义线程池 自定义等待队列、线程生产工厂、拒绝策略。
 * @create: 2020-04-01 14:50
 **/
public class ThreadPoolExecutorDemo {
    public static void main(String[] args) {
        //核心线程
        int corePoolSize = 3;
        //最大线程数
        int maximumPoolSize = 5;
        //线程空闲时间
        int keepAliveTime = 10;
        //时间单位
        TimeUnit timeUnit = TimeUnit.SECONDS;
        MyThreadFactory myThreadFactory = new MyThreadFactory();
        MyIgnorePolicy myIgnorePolicy = new MyIgnorePolicy();
        //等待队列
        BlockingQueue<Runnable> blockingQueue = new ArrayBlockingQueue<>(2);
        ThreadPoolExecutor executor = new ThreadPoolExecutor(
                corePoolSize,
                maximumPoolSize,
                keepAliveTime,
                timeUnit,
                blockingQueue,
                myThreadFactory,
                myIgnorePolicy);
        for (int i = 0; i < 15; i++) {
            executor.execute(new MyTask(String.valueOf(i)));
        }

    }
    /**
     * @Description:线程工厂
     * @Date: 2020/4/1  15:36
     */
    static class MyThreadFactory implements ThreadFactory{
        private AtomicInteger atomicInteger = new AtomicInteger(0);
        @Override
        public Thread newThread(Runnable r) {
            Thread t = new Thread(r,"my-thread" + atomicInteger.getAndIncrement());
            System.out.println("create Thread" + t.getName());
            return t;
        }
    }

    /**
     * @Description: 拒绝策略
     * @Date: 2020/4/1  15:40
     */
    static class MyIgnorePolicy implements RejectedExecutionHandler{

        @Override
        public void rejectedExecution(Runnable r, ThreadPoolExecutor executor) {
            System.out.println("refuse Thread"  + r.toString());
        }
    }

    static class MyTask implements Runnable{
        private String name;

        public MyTask(String name) {
            this.name = name;
        }

        @Override
        public void run() {
            //doSomething
            System.out.println(this.toString() + "is running");
            try {
                Thread.sleep(3000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }

        public String getName() {
            return name;
        }

        public void setName(String name) {
            this.name = name;
        }

        @Override
        public String toString() {
            return "MyTask [name" + name + "]";
        }
    }

}

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值