基础篇6-Thread

线程状态

NEW:创建线程,未start

RUNNABLE:等待调度或者已经在执行

BLOCKED:等锁

WAITING:等待其他线程的动作,如wait或者interrupt

TIMED_WAITING:可以在指定时间内返回

TERMINATED:线程执行完毕

image.png

实现线程的4种方式

实现Runnable接口

public class MyThreadImpRunnable implements Runnable {
    @Override
    public void run() {
        while (true) {
            System.out.println("hello damon!");
            try {
                sleep(1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }

    public static void main(String[] args) {
        Thread t = new Thread(new MyThreadImpRunnable());
        t.start();
    }
}

继承Thread类

public class MyThreadExendThread extends Thread {
    @Override
    public void run() {
        while (true) {
            System.out.println("hello damon!");
            try {
                sleep(1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }

    public static void main(String[] args) {
        MyThreadExendThread mtet = new MyThreadExendThread();
        mtet.start();
    }
}

实现Callable接口

package com.chengjie.thread;

import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.FutureTask;

public class MyThreadImplCallable implements Callable<String> {
    @Override
    public String call() throws Exception {
        String str = "hello damon";
        return str;
    }

    public static void main(String[] args) throws ExecutionException, InterruptedException {
        MyThreadImplCallable mt = new MyThreadImplCallable();
        FutureTask<String> ft = new FutureTask<String>(mt);
        new Thread(ft).start();
        System.out.println(ft.get());
    }
}

通过线程池

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

public class MyThreadProducedByThreadPoolExecutor implements Runnable{
    @Override
    public void run() {
        System.out.println(Thread.currentThread().getName() + "线程被调用了");
    }

    public static void main(String[] args) {
        ExecutorService es = Executors.newFixedThreadPool(10);
//        ExecutorService es = Executors.newCachedThreadPool();
        for (int i = 0; i < 5; i++) {
            es.execute(new MyThreadProducedByThreadPoolExecutor());
            System.out.println("***************" + i + "***************");
        }
        es.shutdown();
    }
}

线程常用方法

静态方法

yield():建议让出执行权,实际不一定调度不到此线程

currentThread():获取当前线程

sleep():休眠,不让出锁

interrupted():get and set

package javase;

public class TestThread extends Thread{
    @Override
    public void run() {
//        yield();
        if (isInterrupted()) {
            System.out.println("this thread is interrupt");
            System.out.println("clear the tag " + interrupted());
        }
        while (true) {

        }
    }

    public static void main(String[] args) {
        Thread t = new TestThread();
        t.start();
        t.interrupt();
        System.out.println("+++++++++++++++++++++++++++++");
        try {
            Thread.currentThread().sleep(1000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        System.out.println("=============================");
        t.interrupt();
        if (t.isInterrupted()) {
            System.out.println("t is interrupted");
        }
        System.out.println(t.isInterrupted());
    }
}

非静态方法

join():当前线程等待调用join方法的线程执行完再执行,可加参数表示等待多久

package javase;

public class TestJoinLong extends Thread{
    @Override
    public void run() {
        try {
            Thread.currentThread().sleep(5000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        System.out.println(Thread.currentThread().getName() + " end!");
    }

    public static void main(String[] args) {
        Thread t = new TestJoinLong();
        t.start();
        try {
            t.join(3000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        System.out.println(Thread.currentThread().getName() + " end!");
    }
}

interrupt():打断调用线程,实际设置一个标记

isInterrupted():判断调用线程是否被打断

isAlive():判断线程是否还存活

setName():设置线程名

getName():获取线程名

setPriority():设置优先级

getPriority():获取优先级

getThreadGroup():获取线程组

activeCount():获取当前线程所在线程组的存活线程

setDaemon():设置线程为守护线程,需要在start()前调用

isDaemon():判断当前线程是否为守护线程

import static java.lang.Thread.sleep;

class MyClass implements Runnable {
    @Override
    public void run() {
        for (int i = 0; i < 10; i++) {
            System.out.println("In Treads [" + Thread.currentThread().getName() + "]");
            System.out.println(Thread.currentThread().getName() + "[" + i + "]");
            try {
                sleep(1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
}

public class TestThread {
    public static void main(String[] args) {
        Thread t1 = new Thread(new MyClass(), "MyClass1");
        Thread t2 = new Thread(new MyClass(), "MyClass2");
        t1.setDaemon(true);
        t2.setDaemon(true);
        t1.start();
        t2.start();
        System.out.println(Thread.currentThread().getName() + " end!");
    }
}

getId():获取线程编号

getState():获取线程状态,如在运行中、时间片等待中

Object中相关方法

wait():线程进入阻塞状态,等待唤醒和锁

notify():唤醒等待的线程

  • 必须有锁
  • wait()会释放锁,sleep不会
  • 时间等待、阻塞


    image.png

示例:两个线程分别打印奇数和偶数,输出123456...

package javase;

class ThreadA extends Thread {
    private Object o;

    public ThreadA(Object o) {
        super();
        this.o = o;
    }

    @Override
    public void run() {
        synchronized (o) {
            for (int i = 100; i < 110; i += 2) {
                System.out.println("1");
                o.notify();
                System.out.println("2");
                System.out.println(i);
                System.out.println("3");
                try {
                    o.wait();
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                System.out.println("4");
            }
        }
    }
}

class ThreadB extends Thread {
    private Object o;

    public ThreadB(Object o) {
        super();
        this.o = o;
    }

    @Override
    public void run() {
        try {
            Thread.sleep(1000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        synchronized (o) {
            for (int i = 101; i < 110; i += 2) {
                System.out.println("5");
                o.notify();
                System.out.println("6");
                System.out.println(i);
                System.out.println("7");
                try {
                    o.wait();
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                System.out.println("8");
            }
        }
    }
}

public class TestPrint {
    public static void main(String[] args) {
        Object o = new Object();
        ThreadA a = new ThreadA(o);
        ThreadB b = new ThreadB(o);
        a.start();
        b.start();
    }
}
  • 只有走出同步区才会释放锁
public class TestWaitNotify {
    public static Object o = new Object();

    static class ThreadA extends Thread {
        @Override
        public void run() {
            synchronized (o) {
                for (int i = 0; i < 100; i++) {
                    System.out.println(Thread.currentThread().getName() + ": " + i);
                    try {
                        Thread.sleep(1000);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }
    }

    static class ThreadB extends Thread {
        @Override
        public void run() {
            synchronized (o) {
                for (int i = 101; i < 200; i++) {
                    System.out.println(Thread.currentThread().getName() + ": " + i);
                    try {
                        Thread.sleep(1000);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }
    }

    public static void main(String[] args) {
        Thread t1 = new ThreadA();
        Thread t2 = new ThreadB();
        t1.start();
        t2.start();
    }
}

参考

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,923评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,154评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,775评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,960评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,976评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,972评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,893评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,709评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,159评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,400评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,552评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,265评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,876评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,528评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,701评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,552评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,451评论 2 352