java主线程结束和子线程结束之间的关系

情况1:正常情况下,主线程启动了子线程,主线程、子线程各自执行,彼此不受影响。

当你在run一个Java application的时候,这个时候系统会开一个进程。然后这个进程启动了Main线程。Java进程确定虚拟机中没有线程运行的时候,退出进程。或者也可以用System.exit(0);强制退出进程


代码示例如下:参考Thinkingin java代码

class LiftOff implements Runnable {

    Logger logger = LoggerFactory.getLogger(LiftOff.class);

    protected int countDown = 10; // Default

    private static int taskCount = 0;

    private final int id = taskCount++;

    public LiftOff() {}

    public LiftOff(int countDown) {

        this.countDown = countDown;

    }

    public String status() {

        return "#" + id + "(" +

                (countDown > 0 ? countDown : "Liftoff!") + "), ";

    }

    @Override

    public void run() {

        while(countDown-- > 0) {

            logger.info(status());

            Thread.yield();

        }

    }

}

public class MainThread{

    Logger logger = LoggerFactory.getLogger(MainClass.class);

    @Test

    public void test(){

        Thread t = new Thread(new LiftOff());

        t.start();

        t.setName("lift off thread");

        logger.info("waiting for liftoff");

    }

}

显示结果:

情况2:需求是主线程执行结束,由主线程启动的子线程都结束



代码如下



class SimpleDaemons implements Runnable {

    Logger logger = LoggerFactory.getLogger(SimpleDaemons.class);

    public void run() {

        try {

            while (true) {

                TimeUnit.MILLISECONDS.sleep(100);

                logger.info("run..");

            }

        } catch (InterruptedException e) {

            logger.info("sleep() interrupted");

        }

    }

}

public class MainThread {

    Logger logger = LoggerFactory.getLogger(MainThread.class);

    @Test

    public void test() {

        for(int i = 0; i < 5; i++) {

            Thread daemon = new Thread(new SimpleDaemons());

            daemon.setDaemon(true); // Must call before start()

            daemon.start();

        }

        logger.info("All daemons started");

        try {

            TimeUnit.MILLISECONDS.sleep(175);

        } catch (InterruptedException e) {

            e.printStackTrace();

        }

    }

}


运行结果:


情况3:需求是子线程执行结束,主线程等待启动的子线程都结束之后再结束



代码:



public class IsAliveTest {

    public static void main(String args[]) throws Exception {

        Thread t = new Thread(new ThreadDemo());

        // this will call run() function

        t.start();

        // waits for this thread to die

        t.join();

        // tests if this thread is alive

        System.out.println("thread t status = " + t.isAlive());

        System.out.println("thread main status = " + Thread.currentThread().isAlive());

    }

}

class ThreadDemo implements Runnable {

    public void run() {

        Thread t = Thread.currentThread();

        // tests if this thread is alive

        System.out.println("status = " + t.isAlive());

        try {

            t.sleep(3000L);

        } catch (InterruptedException e) {

            e.printStackTrace();

        }

    }

}

测试结果




什么情况下一个java thread reach the ‘Die’ state?


From the ThreadAPI, here is a complete list:

  1. If the run() method returns. 例如join()之后

  2. If an exception is thrown that propagates beyond the run method.

  3. If it is a daemon thread and all non-daemonthreads have 'died' 非后台线程都结束

  4. If the exit method of class Runtime has been called (even at another thread).


实际上,我们对Thread类没有什么控制权,我们几乎不能设置线程的任何状态,我们只能创建任务,并通过某种方式使用线程驱动这个任务

所以,在编写多线程代码的时候,遵循规则就变得非常重要

©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

  • 进程和线程 进程 所有运行中的任务通常对应一个进程,当一个程序进入内存运行时,即变成一个进程.进程是处于运行过程中...
    胜浩_ae28阅读 5,297评论 0 23
  • 1、线程安全与锁 线程安全的本质,在于 存在了共享的可变状态 status, 在多线程共同操作状态变量时,当计算的...
    跨境避坑指南阅读 436评论 1 1
  • 本文首发于个人博客:Lam's Blog - 谈谈23种设计模式在Android源码及项目中的应用,文章由Mark...
    格子林ll阅读 4,792评论 1 105
  • 本文主要讲了java中多线程的使用方法、线程同步、线程数据传递、线程状态及相应的一些线程函数用法、概述等。 首先讲...
    李欣阳阅读 2,634评论 1 15
  • 赶在17年前拖着行李箱,回到熟悉的城市,打开房门躺在自己的床上;在17年的第一天醒来煮着老妈出门前留在冰箱里包好的...
    晴老板阅读 356评论 1 2

友情链接更多精彩内容