線程池中 submit() 和 execute() 方法有什麼區別?

1.execute()參數Runnable; 2.submit()參數(Ruunable)或(Ruunable和結果)或(callable) 3.excute(Ruunable x)沒有返回值。可以執行任務 4.submit(Callable x)有返回值,返回一個Future類的對象 5.Future對象, a.通過get方法,獲取線程返回結果 b.通過get方法,解說任務執行時候拋出的異常 c
相關文章
相關標籤/搜索