博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
闲着无聊之StopWatch
阅读量:5826 次
发布时间:2019-06-18

本文共 465 字,大约阅读时间需要 1 分钟。

hot3.png

从此弃用时间戳相减的方式来计算运行时间。 

import org.apache.commons.lang.time.StopWatch;import org.junit.Test;public class Test1 {	@Test	public void test_StopWatch() throws InterruptedException	{						StopWatch stopWatch = new StopWatch();		stopWatch.start();		//Thread.sleep(1000);		for(int i=0;i<1000;i++)		{			Thread.sleep(1);		}		stopWatch.stop();		System.out.println(stopWatch.getTime());		//System.out.println(sw.toString());	}}

...

转载于:https://my.oschina.net/willclick/blog/32116

你可能感兴趣的文章
我从过去八个月的AI公司面试中学到了什么?
查看>>
深入探究Immutable.js的实现机制(一)
查看>>
jsp改造之sitemesh注意事项
查看>>
智能硬件的时代,嵌入式是否已经日薄西山
查看>>
SpringBoot-Shiro使用
查看>>
iOS 9.0之后NSString encode方法替换
查看>>
解决 ThinkPHP5 无法接收 客户端 Post 传递的 Json 参数
查看>>
ASMFD (ASM Filter Driver) Support on OS Platforms (Certification Matrix). (文档 ID 2034681.1)
查看>>
CRM Transaction处理中的权限控制
查看>>
[转]linux创建链接文件的两种方法
查看>>
python ipaddress模块使用
查看>>
统计文件里面某个字符串出现次数
查看>>
文件权限
查看>>
busybox里的僵尸进程为何那么多
查看>>
python debug
查看>>
java 连接数据库之一个完整的函数
查看>>
mysql脚本
查看>>
OllyDBG 入门系列教学--让你瞬间成为破解高手
查看>>
Dubbo点滴(2)之集群容错
查看>>
cengos6.3安装Intel Advanced-N 6205无线驱动
查看>>