Java通过Fork/Join优化并行计算
作者:FrankYou 时间:2023-01-27 21:28:36
本文实例为大家分享了Java通过Fork/Join优化并行计算的具体代码,供大家参考,具体内容如下
Java代码:
package Threads;
import java.util.concurrent.ForkJoinPool;
import java.util.concurrent.RecursiveAction;
/**
* Created by Frank
*/
public class RecursiveActionDemo extends RecursiveAction {
static int[] raw = {19, 3, 0, -1, 57, 24, 65, Integer.MAX_VALUE, 42, 0, 3, 5};
static int[] sorted = null;
int[] source;
int[] dest;
int length;
int start;
final static int THRESHOLD = 4;
public static void main(String[] args) {
sorted = new int[raw.length];
ForkJoinPool pool = new ForkJoinPool();
pool.invoke(new RecursiveActionDemo(raw, 0, raw.length, sorted));
System.out.println('[');
for (int i : sorted) {
System.out.println(i + ",");
}
System.out.println(']');
}
public RecursiveActionDemo(int[] source, int start, int length, int[] dest) {
this.source = source;
this.dest = dest;
this.length = length;
this.start = start;
}
@Override
protected void compute() {
System.out.println("ForkJoinDemo.compute()");
if (length < THRESHOLD) { // 直接计算
for (int i = start; i < start + length; i++) {
dest[i] = source[i] * source[i];
}
} else { // 分而治之
int split = length / 2;
/**
* invokeAll反复调用fork和join直到完成。
*/
invokeAll(new RecursiveActionDemo(source, start, split, dest), new RecursiveActionDemo(source, start + split, length - split, dest));
}
}
}
标签:Java,Fork,Join,并行计算
0
投稿
猜你喜欢
Android中分析Jetpack Compose动画内部的实现原理
2021-06-13 05:23:02
Android实现的简单蓝牙程序示例
2021-06-27 01:23:44
Android实现图片文字轮播特效
2021-07-25 18:44:11
Android自定义ViewGroup之WaterfallLayout(二)
2022-10-11 01:58:02
Java递归实现迷宫游戏
2023-08-26 07:33:16
spring boot整合log4j2及MQ消费处理系统日志示例
2023-06-17 17:47:54
MyBatis中动态sql的实现方法示例
2022-08-26 06:02:31
Java毕业设计实战之教室预订管理系统的实现
2023-03-03 20:38:11
Android编程实现自定义进度条颜色的方法
2023-07-24 07:40:58
java中的interface接口实例详解
2023-10-12 22:03:10
java JSONArray 遍历方式(2种)
2021-09-07 19:52:48
C#警惕匿名方法造成的变量共享实例分析
2021-08-26 19:35:22
Spring Boot简介与快速搭建详细步骤
2023-05-29 03:06:03
Java使用线程同步解决线程安全问题详解
2022-02-28 02:03:24
轻松掌握Java观察者模式
2023-10-10 22:34:54
SpringCloud Eureka服务治理之服务注册服务发现
2021-12-27 15:07:16
Java Online Exam在线考试系统的实现
2022-01-30 13:49:35
java判断各类型字符个数实例代码
2022-01-22 16:39:15
Java异常处理中的一些特殊情况举例
2021-10-11 20:31:54
Android RecyclerView添加FootView和HeadView
2022-12-11 21:17:11