美文网首页
Java 线程挂起

Java 线程挂起

作者: 西贝巴巴 | 来源:发表于2021-03-19 08:15 被阅读0次
package com.company;

/*

*/
public class SleepingThread extends Thread {
    private int countDown = 5;
    private static int threadCount = 0;
    public SleepingThread() {
        super("" + ++threadCount);
        start();
    }
    public String toString() {
        return "#" + getName() + ": " + countDown;
    }
    public void run() {
        while (true) {
            System.out.println(this);
            if (--countDown == 0)
                return;
            try {
                sleep(100);
            }
            catch (InterruptedException e) {
                throw new RuntimeException(e);
            }
        }
    }
    public static void main(String[] args)
            throws InterruptedException {
        for (int i = 0; i < 5; i++)
            new SleepingThread().join();
        System.out.println("线程已被挂起");
    }
}

相关文章

网友评论

      本文标题:Java 线程挂起

      本文链接:https://www.haomeiwen.com/subject/tzkcqltx.html