源码 Callable Callable 是一个带返回值且可抛异常的任务接口。 @FunctionalInterfacepublic interface Callable<V> { V call() throws Exception; } ...