指定執行緒延遲時間(毫秒)

丶狂想曲發表於2016-10-18
package com.hfxt.p4;

public class ThreadTest {
	
	public static void main(String[] args) {
		System.out.println("等待...");
		//阻塞(等待)時間用Thread.sleep方法
		try {
			Thread.sleep(5000);
		} catch (InterruptedException e) {
			e.printStackTrace();
		}
		System.out.println("繼續...");
	}
}

相關文章