다음 예는 스레드를 일시 중단하는 방법을 보여줍니다.
/* author by w3cschool.cc 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 예입니다. - 스레드 정지 컨텐츠, 더 많은 관련 컨텐츠는 PHP 중국어 홈페이지(www.php.cn)를 참고해주세요!