1. 程式人生 > >Executors建立可定時的執行緒newScheduledThreadPool

Executors建立可定時的執行緒newScheduledThreadPool

1、Executors建立可定時的執行緒newScheduledThreadPool

image.png


我們設定執行緒數為5,建立5個任務執行結果如下

image.png


程式等待10秒再執行,這個10秒是由於我們設定的newScheduledThreadPool.schedule(new MyRunnable(), 10, TimeUnit.SECONDS);

image.png