真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

java多線程-實(shí)現(xiàn)Callable接口

  • 實(shí)現(xiàn)callable接口加泛型,即返回的值類型,默認(rèn)為Object
  • 重寫的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í)行
    Futureresult1=ser.submit(a);
    Futureresult2=ser.submit(b);
    Futureresult3=ser.submit(c);
    //獲取結(jié)果
    boolean r1=result1.get();
    boolean r2=result2.get();
    boolean r3=result3.get();
    //關(guān)閉服務(wù):
    ser.shutdownNow();
    }
    }


文章名稱:java多線程-實(shí)現(xiàn)Callable接口
網(wǎng)站路徑:http://weahome.cn/article/piiosc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部