RecursiveTask
public
abstract
class
RecursiveTask
extends ForkJoinTask<V>
java.lang.Object | ||
↳ | java.util.concurrent.ForkJoinTask<V> | |
↳ | java.util.concurrent.RecursiveTask<V> |
A recursive result-bearing ForkJoinTask
.
For example, here is a task-based program for computing Factorials:
import java.util.concurrent.RecursiveTask;
import java.math.BigInteger;
public class Factorial {
static class FactorialTask extends RecursiveTask<BigInteger> {
private final int from, to;
FactorialTask(int from, int to) { this.from = from; this.to = to; }
protected BigInteger compute() {
int range = to - from;
if (range == 0) { // base case
return BigInteger.valueOf(from);
} else if (range == 1) { // too small to parallelize
return BigInteger.valueOf(from).multiply(BigInteger.valueOf(to));
} else { // split in half
int mid = from + range / 2;
FactorialTask leftTask = new FactorialTask(from, mid);
leftTask.fork(); // perform about half the work locally
return new FactorialTask(mid + 1, to).compute()
.multiply(leftTask.join());
}
}
}
static BigInteger factorial(int n) { // uses ForkJoinPool.commonPool()
return (n <= 1) ? BigInteger.ONE : new FactorialTask(1, n).invoke();
}
public static void main(String[] args) {
System.out.println(factorial(Integer.parseInt(args[0])));
}
}
Summary
Public constructors | |
---|---|
RecursiveTask()
Constructor for subclasses to call. |
Public methods | |
---|---|
final
V
|
getRawResult()
Returns the result that would be returned by |
Protected methods | |
---|---|
abstract
V
|
compute()
The main computation performed by this task. |
final
boolean
|
exec()
Implements execution conventions for RecursiveTask. |
final
void
|
setRawResult(V value)
Forces the given value to be returned as a result. |
Inherited methods | |
---|---|
Public constructors
Public methods
getRawResult
public final V getRawResult ()
Returns the result that would be returned by join()
, even
if this task completed abnormally, or null
if this task
is not known to have been completed. This method is designed
to aid debugging, as well as to support extensions. Its use in
any other context is discouraged.
Returns | |
---|---|
V |
the result, or null if not completed |
Protected methods
compute
protected abstract V compute ()
The main computation performed by this task.
Returns | |
---|---|
V |
the result of the computation |
exec
protected final boolean exec ()
Implements execution conventions for RecursiveTask.
Returns | |
---|---|
boolean |
true if this task is known to have completed normally |
setRawResult
protected final void setRawResult (V value)
Forces the given value to be returned as a result. This method is designed to support extensions, and should not in general be called otherwise.
Parameters | |
---|---|
value |
V : the value |