霸气草丛

文章
6
资源
0
加入时间
2年10月24天

java线程池的提交优先级和执行优先级

execute 和 submitsubmit和execute 本质上是没有区别的,根据源码所知,submit也是调用了execute()方法,只不过submit是有返回值的。 public Future<?> submit(Runnable task) { if (task == null) throw new NullPointerException(); RunnableFuture<Void> ft