在 Java 中休眠一段时间
您可以让计算机休眠一段时间,从一毫秒到计算机的整个生命周期。例如,以下程序将休眠 3 秒 −
示例
import java.util.*; public class SleepDemo { public static void main(String args[]) { try { System.out.println(new Date( ) + "
"); Thread.sleep(5*60*10); System.out.println(new Date( ) + "
"); } catch (Exception e) { System.out.println("Got an exception!"); } } }
这将产生以下结果 −
输出
Sun May 03 18:04:41 GMT 2009 Sun May 03 18:04:51 GMT 2009
广告