欢迎您 本站地址:  
返回首页   返回编程教学   诗词名句  西游记  亲情故事  中英串烧  抖店副业  法律书籍  各国区号代码  电影 

Java 实例 - 线程挂起

Java 实例 Java 实例

以下实例演示了如何将线程挂起:

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
线程已被挂起

Java 实例 Java 实例

小库提示

扫描下方二维码,访问手机版。