在任何情况下ThreadPoolExecutor.CallerRunsPolicy会抛出RejectedExecutionException吗?
在我看来,该政策本身旨在防止抛出这些异常。其接口方法的 API RejectedExecutionHandler.rejectedExecution()声称它可能会抛出一个RejectedExecutionException
. CallerRunsPolicy.rejectedExecution() 的 API 没有。
摘要:如果我使用 a RejectedExecutionException
,是否需要明确处理a ?execute()
CallerRunsPolicy