开发者社区> 问答> 正文

Java 实例 - 线程挂起

Java 实例 - 线程挂起

展开
收起
问问小秘 2020-02-13 17:55:25 1275 0
1 条回答
写回答
取消 提交回答
  • 以下实例演示了如何将线程挂起:

    SleepingThread.java 文件 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("线程已被挂起"); } } 以上代码运行输出结果为:

    #1: 5
    #1: 4
    #1: 3
    #1: 2
    #1: 1
    ……
    #5: 3
    #5: 2
    #5: 1
    线程已被挂起
    
    2020-02-13 17:55:40
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
Spring Cloud Alibaba - 重新定义 Java Cloud-Native 立即下载
The Reactive Cloud Native Arch 立即下载
多IO线程优化版 立即下载