Java多線程1 線程基礎(chǔ)

Java多線程目錄

什么是線程

線程是進(jìn)程的一個實(shí)體冷离,是CPU調(diào)度和分派的基本單位昙衅,它是比進(jìn)程更小的能獨(dú)立運(yùn)行的基本單位愁憔。

什么是多線程

多線程指在單個程序中可以同時運(yùn)行多個不同的線程執(zhí)行不同的任務(wù)抹锄。

創(chuàng)建多線程的3種方式

Thread焰手、Runnable糟描、Callable
1、繼承Thread類實(shí)現(xiàn)多線程
        Thread thread = new Thread() {
            @Override
            public void run() {
                super.run();
                while (true) {
                    try {
                        Thread.sleep(500);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                    System.out.println("1:" + Thread.currentThread().getName());
                    System.out.println("2:" + this.getName());
                }
            }
        };
        thread.start();
2书妻、實(shí)現(xiàn)Runnable接口方式實(shí)現(xiàn)多線程
Thread thread1 = new Thread(new Runnable() {
            @Override
            public void run() {
                while (true) {
                    try {
                        Thread.sleep(500);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                    System.out.println("3:" + Thread.currentThread().getName());
                }
            }
        });
        thread1.start();
3船响、Callable接口創(chuàng)建線程
public class CallableTest {

    public static void main(String[] args) {
        System.out.println("當(dāng)前線程是:" + Thread.currentThread());
        Callable myCallable = new Callable() {
            @Override
            public Integer call() throws Exception {
                int i = 0;
                for (; i < 10; i++) {

                }
                //當(dāng)前線程
                System.out.println("當(dāng)前線程是:" + Thread.currentThread()
                        + ":" + i);
                return i;
            }
        };
        FutureTask<Integer> fu = new FutureTask<Integer>(myCallable);
        Thread th = new Thread(fu, "callable thread");

        th.start();

        //得到返回值
        try {
            System.out.println("返回值是:" + fu.get());

        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}
當(dāng)前線程是:Thread[main,5,main]
當(dāng)前線程是:Thread[callable thread,5,main]:10
返回值是:10
總結(jié)

實(shí)現(xiàn)Runnable接口相比繼承Thread類有如下優(yōu)勢:

可以避免由于Java的單繼承特性而帶來的局限;
增強(qiáng)程序的健壯性,代碼能夠被多個線程共享见间,代碼與數(shù)據(jù)是獨(dú)立的聊闯;
適合多個相同程序代碼的線程區(qū)處理同一資源的情況。

實(shí)現(xiàn)Runnable接口和實(shí)現(xiàn)Callable接口的區(qū)別:

Runnable是自從java1.1就有了缤剧,而Callable是1.5之后才加上去的
Callable規(guī)定的方法是call(),Runnable規(guī)定的方法是run()
Callable的任務(wù)執(zhí)行后可返回值馅袁,而Runnable的任務(wù)是不能返回值(是void)
call方法可以拋出異常,run方法不可以
運(yùn)行Callable任務(wù)可以拿到一個Future對象荒辕,表示異步計算的結(jié)果汗销。它提供了檢查計算是否完成的方法,以等待計算的完成抵窒,并檢索計算的結(jié)果弛针。通過Future對象可以了解任務(wù)執(zhí)行情況,可取消任務(wù)的執(zhí)行李皇,還可獲取執(zhí)行結(jié)果削茁。
加入線程池運(yùn)行,Runnable使用ExecutorService的execute方法掉房,Callable使用submit方法茧跋。

線程的生命周期與狀態(tài)

狀態(tài)名稱 說明
NEW 初始狀態(tài),線程被構(gòu)建卓囚,但是還沒有調(diào)用start()方法
RUNNABLE 運(yùn)行狀態(tài)瘾杭,Java線程將操作系統(tǒng)中的就緒和運(yùn)行兩種狀態(tài)籠統(tǒng)地稱作“運(yùn)行中”
BLOCKED 阻塞狀態(tài),表示線程阻塞于鎖
WAITING 等待狀態(tài)哪亿,表示線程進(jìn)入等待狀態(tài)粥烁,進(jìn)入該狀態(tài)表示當(dāng)前線程需要等待其他線程做出一些特定動作(通知或中斷)
TIME_WAITING 超時等待狀態(tài),該狀態(tài)不同于WAITING蝇棉,它是可以在指定的時間自行返回的
TERMINATED 終止?fàn)顟B(tài)讨阻,表示當(dāng)前線程已經(jīng)執(zhí)行完畢

線程的執(zhí)行順序

Join線程的運(yùn)行順序
原理:

定時器

import java.util.Timer;
import java.util.TimerTask;

public class TraditionalTimerTest {
    public static void main(String[] args) {

//         new Timer().schedule(new TimerTask() {
//             @Override
//             public void run() {
//
//                 System.out.println("bombing!");
//             }
//         },10000);

        class MyTimberTask extends TimerTask {
            @Override
            public void run() {

                System.out.println("bombing!");
                new Timer().schedule(new MyTimberTask(), 2000);
            }
        }


        new Timer().schedule(new MyTimberTask(), 2000);


        int count = 0;
        while (true) {
            System.out.println(count++);
            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }

        }
    }
}
0
1
bombing!
2
3
bombing!
4
5
bombing!
6
省略...

線程的互斥與同步通信

public class TraditionalThreadSynchronized {

    public static void main(String[] args) {

        new TraditionalThreadSynchronized().init();
    }

    private void init() {
        final Outputer outputer = new Outputer();

        new Thread(new Runnable() {
            @Override
            public void run() {

                while (true) {
                    try {
                        Thread.sleep(10);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                    outputer.output("kpioneer");

                }
            }
        }).start();

//        new Thread(new Runnable() {
//            @Override
//            public void run() {
//
//                while (true) {
//                    try {
//                        Thread.sleep(10);
//                    } catch (InterruptedException e) {
//                        e.printStackTrace();
//                    }
//                    outputer.output2("Tom");
//
//                }
//            }
//        }).start();

        new Thread(new Runnable() {
            @Override
            public void run() {

                while (true) {
                    try {
                        Thread.sleep(10);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                    outputer.output3("Jack");

                }
            }
        }).start();
    }

  static   class Outputer {

        public void output(String name) {

            int len = name.length();

            synchronized (Outputer.class) {

                for (int i = 0; i < len; i++) {
                    System.out.print(name.charAt(i));
                }
                System.out.println();
            }

        }

        public synchronized void output2(String name) {
            int len = name.length();

            for (int i = 0; i < len; i++) {
                System.out.print(name.charAt(i));
            }
            System.out.println();
        }

      public static synchronized void output3(String name) {
          int len = name.length();

          for (int i = 0; i < len; i++) {
              System.out.print(name.charAt(i));
          }
          System.out.println();
      }
    }
}

線程同步通信技術(shù)

子線程循環(huán)10次,接著主線程循環(huán)100篡殷,接著又回到子線程循環(huán)10次钝吮,接著再回到主線程有循環(huán)100,如此循環(huán)50次板辽,請寫出程序奇瘦。

public class TraditionalThreadCommunication {
    public static void main(String[] args) {

        final Business business = new Business();
        new Thread(new Runnable() {
                    @Override
                    public void run() {
                        for (int i = 1; i <= 50; i++) {
                            business.sub(i);
                        }
                    }
                }
        ).start();
        for (int i = 1; i <= 50; i++) {
            business.main(i);
        }
    }

}

/**
 *要用到共同數(shù)據(jù)(包括同步鎖)的若干方法應(yīng)該歸在同一個類身上,
 * 這種設(shè)計正好體現(xiàn)了高類聚和和程序的健壯性
 */
class Business {
    private boolean bShouldSub = true;
    public synchronized void sub(int i) {
        if(!bShouldSub) {

            try {
                this.wait();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
        for (int j = 1; j <= 10; j++) {
            System.out.println("sub thread sequece of " + j + ",loop of " + i);

        }
        bShouldSub = false;
        this.notify();
    }

    public synchronized void main(int i) {
        if(bShouldSub) {
            try {
                this.wait();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
        for (int j = 1; j <=100; j++) {
            System.out.println("main thread sequece of " + j + ",loop of " + i);

        }
        bShouldSub = true;
        this.notify();
    }
}
sub thread sequece of 1,loop of 1
sub thread sequece of 2,loop of 1
sub thread sequece of 3,loop of 1
sub thread sequece of 4,loop of 1
sub thread sequece of 5,loop of 1
sub thread sequece of 6,loop of 1
sub thread sequece of 7,loop of 1
sub thread sequece of 8,loop of 1
sub thread sequece of 9,loop of 1
sub thread sequece of 10,loop of 1
main thread sequece of 1,loop of 1
main thread sequece of 2,loop of 1
main thread sequece of 3,loop of 1
main thread sequece of 4,loop of 1
main thread sequece of 5,loop of 1
main thread sequece of 6,loop of 1
main thread sequece of 7,loop of 1
main thread sequece of 8,loop of 1
main thread sequece of 9,loop of 1
main thread sequece of 10,loop of 1
main thread sequece of 11,loop of 1
省略中間...
main thread sequece of 99,loop of 1
main thread sequece of 100,loop of 1
sub thread sequece of 1,loop of 2
sub thread sequece of 2,loop of 2
sub thread sequece of 3,loop of 2
sub thread sequece of 4,loop of 2
sub thread sequece of 5,loop of 2
sub thread sequece of 6,loop of 2
sub thread sequece of 7,loop of 2
sub thread sequece of 8,loop of 2
sub thread sequece of 9,loop of 2
sub thread sequece of 10,loop of 2
main thread sequece of 1,loop of 2
main thread sequece of 2,loop of 2
main thread sequece of 3,loop of 2
省略...
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末戳气,一起剝皮案震驚了整個濱河市链患,隨后出現(xiàn)的幾起案子巧鸭,更是在濱河造成了極大的恐慌瓶您,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異呀袱,居然都是意外死亡贸毕,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進(jìn)店門夜赵,熙熙樓的掌柜王于貴愁眉苦臉地迎上來明棍,“玉大人,你說我怎么就攤上這事寇僧√福” “怎么了?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵嘁傀,是天一觀的道長兴蒸。 經(jīng)常有香客問我,道長细办,這世上最難降的妖魔是什么橙凳? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮笑撞,結(jié)果婚禮上岛啸,老公的妹妹穿的比我還像新娘。我一直安慰自己茴肥,他們只是感情好坚踩,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著炉爆,像睡著了一般堕虹。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上芬首,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天赴捞,我揣著相機(jī)與錄音,去河邊找鬼郁稍。 笑死赦政,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的耀怜。 我是一名探鬼主播恢着,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼财破!你這毒婦竟也來了掰派?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤左痢,失蹤者是張志新(化名)和其女友劉穎靡羡,沒想到半個月后系洛,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡略步,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年描扯,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片趟薄。...
    茶點(diǎn)故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡绽诚,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出杭煎,到底是詐尸還是另有隱情恩够,我是刑警寧澤,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布羡铲,位于F島的核電站玫鸟,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏犀勒。R本人自食惡果不足惜屎飘,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望贾费。 院中可真熱鬧钦购,春花似錦、人聲如沸褂萧。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽导犹。三九已至唱凯,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間谎痢,已是汗流浹背磕昼。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留节猿,地道東北人票从。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓,卻偏偏與公主長得像滨嘱,于是被迫代替她去往敵國和親峰鄙。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,762評論 2 345

推薦閱讀更多精彩內(nèi)容

  • 進(jìn)程和線程 進(jìn)程 所有運(yùn)行中的任務(wù)通常對應(yīng)一個進(jìn)程,當(dāng)一個程序進(jìn)入內(nèi)存運(yùn)行時,即變成一個進(jìn)程.進(jìn)程是處于運(yùn)行過程中...
    勝浩_ae28閱讀 5,085評論 0 23
  • 本文是我自己在秋招復(fù)習(xí)時的讀書筆記太雨,整理的知識點(diǎn)吟榴,也是為了防止忘記,尊重勞動成果囊扳,轉(zhuǎn)載注明出處哦吩翻!如果你也喜歡梅惯,那...
    波波波先森閱讀 11,239評論 4 56
  • Java多線程學(xué)習(xí) [-] 一擴(kuò)展javalangThread類 二實(shí)現(xiàn)javalangRunnable接口 三T...
    影馳閱讀 2,952評論 1 18
  • 本文主要講了java中多線程的使用方法、線程同步仿野、線程數(shù)據(jù)傳遞、線程狀態(tài)及相應(yīng)的一些線程函數(shù)用法她君、概述等脚作。 首先講...
    李欣陽閱讀 2,442評論 1 15
  • 原來那本書是亨利米勒寫的,據(jù)說很經(jīng)典缔刹,我大致看了看球涛,感覺也就一般⌒8洌可能是我的經(jīng)歷不夠吧亿扁。他們說有什么樣的經(jīng)歷就會...
    夢回304閱讀 315評論 0 0