首页 > 代码库 > java测试方法运行时间 System.currentTimeMillis();
java测试方法运行时间 System.currentTimeMillis();
测试:
效果:
System.currentTimeMillis();
currentTimeMillis()返回以毫秒为单位的当前时间,返回的是当前时间与协调世界时 1970 年 1 月 1 日午夜之间的时间差(以毫秒为单位测量)。注意,当返回值的时间单位是毫秒时,值的粒度取决于基础操作系统,并且粒度可能更大。例如,许多操作系统以几十毫秒为单位测量时间。
主要用法:
(1)用来测试程序的运行时间:
如图中所示
(2)控制线程时间,刷新屏幕频率:
time1 = System.currentTimeMillis(); ------程代码段------ time2 = System.currentTimeMillis(); if (time2 - time1 < 60) { try { Thread.sleep(60 - (time2 - time1)); } catch (InterruptedException e) { } }
(3)生成不重复的文件名:
public String getName(){ Stringdate1 = null; SimpleDateFormatsdf1 = new SimpleDateFormat("yyyyMMddHHmmssSSS"); date1= sdf1.format(new Date(System.currentTimeMillis()))+".txt"; return date1; }
(4)获取日期类型
long currentTime = System.currentTimeMillis(); SimpleDateFormat formatter = new SimpleDateFormat("yyyy年-MM月dd日-HH时mm分ss秒") Date date = new Date(currentTime); System.out.println(formatter.format(date)); 运行结果如下: 当前时间:2015年-01月16日-16时42分46秒
java测试方法运行时间 System.currentTimeMillis();
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。