这是java.util.concurrent.CountedCompleter
类的代码片段(JDK 1.8.0_25)。
/**
* If the pending count is nonzero, decrements the count;
* otherwise invokes {@link #onCompletion(CountedCompleter)}
* and then similarly tries to complete this task's completer,
* if one exists, else marks this task as complete.
*/
public final void tryComplete() {
CountedCompleter<?> a = this, s = a;
for (int c;;) {
if ((c = a.pending) == 0) {
a.onCompletion(s);
if ((a = (s = a).completer) == null) {
s.quietlyComplete();
return;
}
}
else if (U.compareAndSwapInt(a, PENDING, c, c - 1))
return;
}
}
这让我真的很困惑。文档说:“然后类似地尝试完成这个任务的完成者”,但我没有看到在这个任务的完成者上调用任何“完成”;或任何其他调用它。
有人在这门课上工作过吗?这是文档或实施的问题吗?我也可能用错误的方式烹饪它。任何如何正确处理此类的想法都值得赞赏。