黑马程序员技术交流社区
标题:
线程里的sleep();方法
[打印本页]
作者:
强强_U00ts
时间:
2015-7-23 20:12
标题:
线程里的sleep();方法
线程的休眠: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+"毫秒");//获取线程休眠时间
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2