试试多线程

2021/12/1 23:08:15

本文主要是介绍试试多线程,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

5-19

本题要求主线程退出时,在main方法中所启动的线程t1也要自动结束。

public class Main {
    public static void main(String[] args) throws InterruptedException {
        Thread t1 = new Thread(new PrintTask());
        
t1.setDaemon(true);
t1.join();

System.out.println(Thread.currentThread().getName() + " end"); } }

5-21

本题目要求t1线程打印完后,才执行主线程main方法的最后一句System.out.println(Thread.currentThread().getName()+" end");

public class Main {
    public static void main(String[] args) throws InterruptedException {
        Thread t1 = new Thread(new PrintTask());
        
t1.start();
t1.join();

System.out.println(Thread.currentThread().getName()+" end"); } }

 



这篇关于试试多线程的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程