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

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

java多線程-join插隊(duì)

join
合并線程,插隊(duì)線程,將此線程執(zhí)行完成后,再執(zhí)行其他線程,其他線程阻塞
join是一個(gè)成員方法,必須通過Thread對(duì)象調(diào)用

創(chuàng)新互聯(lián)公司"三網(wǎng)合一"的企業(yè)建站思路。企業(yè)可建設(shè)擁有電腦版、微信版、手機(jī)版的企業(yè)網(wǎng)站。實(shí)現(xiàn)跨屏營(yíng)銷,產(chǎn)品發(fā)布一步更新,電腦網(wǎng)絡(luò)+移動(dòng)網(wǎng)絡(luò)一網(wǎng)打盡,滿足企業(yè)的營(yíng)銷需求!創(chuàng)新互聯(lián)公司具備承接各種類型的成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作項(xiàng)目的能力。經(jīng)過10多年的努力的開拓,為不同行業(yè)的企事業(yè)單位提供了優(yōu)質(zhì)的服務(wù),并獲得了客戶的一致好評(píng)。

public class n {

public static void main(String[]args) throws InterruptedException
{
    Thread t =new Thread(()-> {
        for(int i=0;i<5;i++)
        {
            System.out.println("a"+i);
        }
    });
    t.start();

    for(int i=0;i<5;i++)
    {
        if(i%2==0)
        {
            t.join();//插隊(duì),此時(shí)main主線程被阻塞,插隊(duì)線程執(zhí)行完所有步驟再執(zhí)行main
        }
        System.out.println("b"+i);
    }

}

}

例二:

public class n {

public static void main(String[]args) throws InterruptedException
{
    new Thread(new father()).start();

}

}

class father extends Thread{
public void run()
{
    System.out.println("想抽象,發(fā)現(xiàn)沒了");
    System.out.println("讓兒子買中華");
    Thread t=new Thread(new son());
    t.start(); //不行,各走各的邏輯錯(cuò)誤,再加入join先執(zhí)行完son,再執(zhí)行father剩下的
    try {
        t.join();
    } catch (InterruptedException e) {

        e.printStackTrace();
    }
    System.out.println("接過煙");
}
}

class son extends Thread{
public void run()
{
    System.out.println("拿錢");
    System.out.println("路邊玩10秒");
    for(int i=0;i<10;i++)
    {
        System.out.println(i+"秒過去了");
        try {
            Thread.sleep(1000);
        } catch (InterruptedException e) {

            e.printStackTrace();
        }
    }
    System.out.println("去買煙");
    System.out.println("回家");
}
}

當(dāng)前名稱:java多線程-join插隊(duì)
轉(zhuǎn)載注明:http://weahome.cn/article/ihegog.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部