重寫的call方法可以有返回值,可以拋出異常
成都創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比東寶網(wǎng)站開(kāi)發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫(kù),直接使用。一站式東寶網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋東寶地區(qū)。費(fèi)用合理售后完善,十載實(shí)體公司更值得信賴。
public class ThreadDownload implements Callable
public Boolean call() throws Exception
{
return true;
}
public static void main(String[]args) throws InterruptedException, ExecutionException
{
ThreadDownload a=new ThreadDownload();
ThreadDownload b=new ThreadDownload();
ThreadDownload c=new ThreadDownload();
//創(chuàng)建執(zhí)行服務(wù)
ExecutorService ser =Executors.newFixedThreadPool(3);
//提交執(zhí)行
Future
Future
Future
//獲取結(jié)果
boolean r1=result1.get();
boolean r2=result2.get();
boolean r3=result3.get();
//關(guān)閉服務(wù):
ser.shutdownNow();
}
}