以下のように実装CompletableFuture
していますが、エラーが発生します
CompletableFuture(Object)
にプライベート アクセスがありますCompletableFuture
public CompletableFuture<A> init(B b) {
C c = new C();
CompletableFuture<A> future = new CompletableFuture<A>(c);
return future;
}
public class C implements Callable<A> {
public A call() throws Exception {
A a = new A();
return a;
}
}
このエラーを解決する解決策を望みますか?