线程的休眠:Thread类的sleep()方法可以让线程进入休眠状态.
[java] view plaincopy
class SleepDemo
{
public static void main(String[] args)
{
long startTime = System.currentTimeMillis();//获取系统当前时间
try
{
Thread.sleep(1000);//线程休眠1秒钟
}
catch (InterruptedException e)
{
e.printStackTrace();//输出异常信息
}
long endTime = System.currentTimeMillis();//获取系统当前时间
System.out.print("线程休眠时间是:");
System.out.println(endTime - startTime+"毫秒");//获取线程休眠时间
} |
|