JUC详解-14-ForkJoin详解

JUC详解 -> ForkJoin详解

什么是ForkJoin?

  • JDK 1.7后
  • 并行执行任务,提高效率,大数据量!
  • 大数据:Map Reduce,把大任务拆分为小任务
    ForkJoin
  • ForkJoin特点:工作窃取
  • 这个里面维护的都是双端队列
    ForkJoin工作窃取

ForkJoin操作

ForkJoinPool - execute(ForkJoinTask)

ForkJoinTask

//求和计算的任务
import java.util.concurrent.RecursiveTask;

/**
 * 如何使用ForkJoin
 * 1.ForkJoinPool 通过它来执行
 * 2.计算任务forkjoin.execute(ForkJoinTask<?> task)
 * 3.计算任务继承ForkJoinTask
 */
public class ForkJoinDemo extends RecursiveTask<Long> {
    private Long start;
    private Long end;
    //临界值
    private Long temp = 10000L;
    public ForkJoinDemo(Long start, Long end){
        this.start = start;
        this.end = end;
    }
    @Override
    protected Long compute() {
        if((end - start)<temp){
            Long sum = 0L;
            for(Long i = start; i <= end; i++){
                sum = sum + i;
            }
            return sum;
        }else{
            //forkJoin分支合并计算
            long middle = (start + end) / 2;//中间值
            ForkJoinDemo task1 = new ForkJoinDemo(start, middle);
            task1.fork();//拆分任务,把任务压入线程队列
            ForkJoinDemo task2 = new ForkJoinDemo(middle + 1, end);
            task2.fork();
            return task1.join() + task2.join();
        }
    }
}
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ForkJoinPool;
import java.util.concurrent.ForkJoinTask;
import java.util.stream.LongStream;

public class Test {
    public static void main(String[] args) throws ExecutionException, InterruptedException {
        //test1();
        //test2();
        test3();
    }

    public static void test1(){
        Long sum = 0L;
        long start = System.currentTimeMillis();
        for (Long i = 1L; i < 10_0000_0000; i++) {
            sum = sum + i;
        }
        long end = System.currentTimeMillis();
        System.out.println("sum= " + "时间:"+ (end - start));  //9949
    }

    public static void test2() throws ExecutionException, InterruptedException {

        long start = System.currentTimeMillis();
        ForkJoinPool forkJoinPool = new ForkJoinPool();
        ForkJoinTask<Long> task = new ForkJoinDemo(0L, 10_0000_0000L);
        ForkJoinTask<Long> submit = forkJoinPool.submit(task);//提交任务
        Long sum = submit.get();

        long end = System.currentTimeMillis();
        System.out.println("sum= " + "时间:"+ (end - start)); //4055
    }

    public static void test3(){
        long start = System.currentTimeMillis();
        //Stream
        long sum = LongStream.rangeClosed(1L, 10_0000_0000).parallel().reduce(0, Long::sum); //368

        long end = System.currentTimeMillis();
        System.out.println("sum= " + "时间:"+ (end - start));
    }
}

System.currentTimeMillis();
System.out.println("sum= " + “时间:”+ (end - start));
}
}


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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值