如何获取方法的执行时间?是否有 Timer 实用程序类用于计时任务需要多长时间等?
Google 上的大多数搜索都会返回调度线程和任务的计时器的结果,这不是我想要的。
Instant
类:stackoverflow.com/a/30975902/1216775
总是有老式的方法:
long startTime = System.nanoTime();
methodToTime();
long endTime = System.nanoTime();
long duration = (endTime - startTime); //divide by 1000000 to get milliseconds.
我选择简单的答案。为我工作。
long startTime = System.currentTimeMillis();
doReallyLongThing();
long endTime = System.currentTimeMillis();
System.out.println("That took " + (endTime - startTime) + " milliseconds");
它工作得很好。分辨率显然只有毫秒,使用 System.nanoTime() 可以做得更好。两者都有一些限制(操作系统调度切片等),但这工作得很好。
几次运行的平均值(越多越好),你会得到一个不错的主意。
nanoTime
保证至少与 currentTimeMillis
一样坚决。 docs.oracle.com/javase/7/docs/api/java/lang/…
currentTimeMillis
的一个小优势是它是一个实际的时间戳,也可用于记录开始/结束时间,而 nanoTime
“只能用于测量经过的时间,与任何其他概念无关系统或挂钟时间。”
拜托了伙计们!没有人提到 Guava 方法来做到这一点(可以说是很棒的):
import com.google.common.base.Stopwatch;
Stopwatch timer = Stopwatch.createStarted();
//method invocation
LOG.info("Method took: " + timer.stop());
好消息是 Stopwatch.toString() 在为测量选择时间单位方面做得很好。即数值小则输出38ns,长则显示5m 3s
更好的是:
Stopwatch timer = Stopwatch.createUnstarted();
for (...) {
timer.start();
methodToTrackTimeFor();
timer.stop();
methodNotToTrackTimeFor();
}
LOG.info("Method took: " + timer);
注意:Google Guava 需要 Java 1.6+
start()
(对于 stop()
也是如此)。
使用 Java 8 新 API 中的 Instant 和 Duration,
Instant start = Instant.now();
Thread.sleep(5000);
Instant end = Instant.now();
System.out.println(Duration.between(start, end));
输出,
PT5S
Duration.between(start, end).getSeconds()
。 Duration
也有转换为其他时间单位的方法,例如 toMillis()
转换为毫秒。
将所有可能的方式聚集到一个地方。
Date startDate = Calendar.getInstance().getTime();
long d_StartTime = new Date().getTime();
Thread.sleep(1000 * 4);
Date endDate = Calendar.getInstance().getTime();
long d_endTime = new Date().getTime();
System.out.format("StartDate : %s, EndDate : %s \n", startDate, endDate);
System.out.format("Milli = %s, ( D_Start : %s, D_End : %s ) \n", (d_endTime - d_StartTime),d_StartTime, d_endTime);
long startTime = System.currentTimeMillis();
Thread.sleep(1000 * 4);
long endTime = System.currentTimeMillis();
long duration = (endTime - startTime);
System.out.format("Milli = %s, ( S_Start : %s, S_End : %s ) \n", duration, startTime, endTime );
System.out.println("Human-Readable format : "+millisToShortDHMS( duration ) );
人类可读Format
public static String millisToShortDHMS(long duration) {
String res = ""; // java.util.concurrent.TimeUnit;
long days = TimeUnit.MILLISECONDS.toDays(duration);
long hours = TimeUnit.MILLISECONDS.toHours(duration) -
TimeUnit.DAYS.toHours(TimeUnit.MILLISECONDS.toDays(duration));
long minutes = TimeUnit.MILLISECONDS.toMinutes(duration) -
TimeUnit.HOURS.toMinutes(TimeUnit.MILLISECONDS.toHours(duration));
long seconds = TimeUnit.MILLISECONDS.toSeconds(duration) -
TimeUnit.MINUTES.toSeconds(TimeUnit.MILLISECONDS.toMinutes(duration));
long millis = TimeUnit.MILLISECONDS.toMillis(duration) -
TimeUnit.SECONDS.toMillis(TimeUnit.MILLISECONDS.toSeconds(duration));
if (days == 0) res = String.format("%02d:%02d:%02d.%04d", hours, minutes, seconds, millis);
else res = String.format("%dd %02d:%02d:%02d.%04d", days, hours, minutes, seconds, millis);
return res;
}
Guava:Google StopwatchJAR « 秒表的一个对象是以纳秒为单位测量经过的时间。
com.google.common.base.Stopwatch g_SW = Stopwatch.createUnstarted();
g_SW.start();
Thread.sleep(1000 * 4);
g_SW.stop();
System.out.println("Google StopWatch : "+g_SW);
Apache Commons LangJAR « StopWatch 为计时提供了方便的 API。
org.apache.commons.lang3.time.StopWatch sw = new StopWatch();
sw.start();
Thread.sleep(1000 * 4);
sw.stop();
System.out.println("Apache StopWatch : "+ millisToShortDHMS(sw.getTime()) );
JODA-TIME
public static void jodaTime() throws InterruptedException, ParseException{
java.text.SimpleDateFormat ms_SDF = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss.SSS");
String start = ms_SDF.format( new Date() ); // java.util.Date
Thread.sleep(10000);
String end = ms_SDF.format( new Date() );
System.out.println("Start:"+start+"\t Stop:"+end);
Date date_1 = ms_SDF.parse(start);
Date date_2 = ms_SDF.parse(end);
Interval interval = new org.joda.time.Interval( date_1.getTime(), date_2.getTime() );
Period period = interval.toPeriod(); //org.joda.time.Period
System.out.format("%dY/%dM/%dD, %02d:%02d:%02d.%04d \n",
period.getYears(), period.getMonths(), period.getDays(),
period.getHours(), period.getMinutes(), period.getSeconds(), period.getMillis());
}
Java 8 中的 Java 日期时间 API « Duration 对象表示两个 Instant 对象之间的时间段。
Instant start = java.time.Instant.now();
Thread.sleep(1000);
Instant end = java.time.Instant.now();
Duration between = java.time.Duration.between(start, end);
System.out.println( between ); // PT1.001S
System.out.format("%dD, %02d:%02d:%02d.%04d \n", between.toDays(),
between.toHours(), between.toMinutes(), between.getSeconds(), between.toMillis()); // 0D, 00:00:01.1001
Spring Framework 提供 StopWatch 实用程序类来测量 Java 中经过的时间。
StopWatch sw = new org.springframework.util.StopWatch();
sw.start("Method-1"); // Start a named task
Thread.sleep(500);
sw.stop();
sw.start("Method-2");
Thread.sleep(300);
sw.stop();
sw.start("Method-3");
Thread.sleep(200);
sw.stop();
System.out.println("Total time in milliseconds for all tasks :\n"+sw.getTotalTimeMillis());
System.out.println("Table describing all tasks performed :\n"+sw.prettyPrint());
System.out.format("Time taken by the last task : [%s]:[%d]",
sw.getLastTaskName(),sw.getLastTaskTimeMillis());
System.out.println("\n Array of the data for tasks performed « Task Name: Time Taken");
TaskInfo[] listofTasks = sw.getTaskInfo();
for (TaskInfo task : listofTasks) {
System.out.format("[%s]:[%d]\n",
task.getTaskName(), task.getTimeMillis());
}
输出:
Total time in milliseconds for all tasks :
999
Table describing all tasks performed :
StopWatch '': running time (millis) = 999
-----------------------------------------
ms % Task name
-----------------------------------------
00500 050% Method-1
00299 030% Method-2
00200 020% Method-3
Time taken by the last task : [Method-3]:[200]
Array of the data for tasks performed « Task Name: Time Taken
[Method-1]:[500]
[Method-2]:[299]
[Method-3]:[200]
使用分析器(JProfiler、Netbeans Profiler、Visual VM、Eclipse Profiler 等)。您将获得最准确的结果,并且干扰最少。他们使用内置的 JVM 机制进行分析,如果需要,还可以为您提供额外的信息,如堆栈跟踪、执行路径和更全面的结果。
当使用一个完全集成的分析器时,分析一个方法是非常简单的。右键单击,Profiler -> 添加到根方法。然后像进行测试运行或调试器一样运行分析器。
System.currentTimeMillis();
不是衡量算法性能的好方法。它衡量您作为用户观看计算机屏幕所经历的总时间。它还包括在您的计算机上在后台运行的所有其他内容所消耗的时间。如果您的工作站上有很多程序正在运行,这可能会产生巨大的影响。
正确的方法是使用 java.lang.management
包。
从 http://nadeausoftware.com/articles/2008/03/java_tip_how_get_cpu_and_user_time_benchmarking 网站 (archive link):
“用户时间”是运行应用程序自己的代码所花费的时间。
“系统时间”是代表您的应用程序(例如 I/O)运行操作系统代码所花费的时间。
getCpuTime()
方法为您提供了以下各项的总和:
import java.lang.management.ManagementFactory;
import java.lang.management.ThreadMXBean;
public class CPUUtils {
/** Get CPU time in nanoseconds. */
public static long getCpuTime( ) {
ThreadMXBean bean = ManagementFactory.getThreadMXBean( );
return bean.isCurrentThreadCpuTimeSupported( ) ?
bean.getCurrentThreadCpuTime( ) : 0L;
}
/** Get user time in nanoseconds. */
public static long getUserTime( ) {
ThreadMXBean bean = ManagementFactory.getThreadMXBean( );
return bean.isCurrentThreadCpuTimeSupported( ) ?
bean.getCurrentThreadUserTime( ) : 0L;
}
/** Get system time in nanoseconds. */
public static long getSystemTime( ) {
ThreadMXBean bean = ManagementFactory.getThreadMXBean( );
return bean.isCurrentThreadCpuTimeSupported( ) ?
(bean.getCurrentThreadCpuTime( ) - bean.getCurrentThreadUserTime( )) : 0L;
}
}
这可能不是您要我说的,但这是 AOP 的一个很好的用途。在您的方法周围使用代理拦截器,并在那里进行计时。
遗憾的是,AOP 的内容、原因和方式超出了这个答案的范围,但我可能会这样做。
编辑:Here's a link 到 Spring AOP 让你开始,如果你热衷的话。这是 Iive 为 java 遇到的最容易访问的 AOP 实现。
另外,鉴于其他人的非常简单的建议,我应该补充一点,AOP 适用于您不希望诸如时间之类的东西侵入您的代码时。但在很多情况下,那种简单易行的方法就可以了。
使用 Java 8,您还可以对每个普通方法执行以下操作:
Object returnValue = TimeIt.printTime(() -> methodeWithReturnValue());
//do stuff with your returnValue
与 TimeIt 一样:
public class TimeIt {
public static <T> T printTime(Callable<T> task) {
T call = null;
try {
long startTime = System.currentTimeMillis();
call = task.call();
System.out.print((System.currentTimeMillis() - startTime) / 1000d + "s");
} catch (Exception e) {
//...
}
return call;
}
}
使用这种方法,您可以在代码中的任何位置轻松测量时间而不会破坏它。在这个简单的例子中,我只是打印时间。您可以为 TimeIt 添加一个 Switch,例如仅在 DebugMode 或其他方式下打印时间。
如果您正在使用 Function ,您可以执行以下操作:
Function<Integer, Integer> yourFunction= (n) -> {
return IntStream.range(0, n).reduce(0, (a, b) -> a + b);
};
Integer returnValue = TimeIt.printTime2(yourFunction).apply(10000);
//do stuff with your returnValue
public static <T, R> Function<T, R> printTime2(Function<T, R> task) {
return (t) -> {
long startTime = System.currentTimeMillis();
R apply = task.apply(t);
System.out.print((System.currentTimeMillis() - startTime) / 1000d
+ "s");
return apply;
};
}
我们也可以使用 Apache commons 的 StopWatch 类来测量时间。
示例代码
org.apache.commons.lang.time.StopWatch sw = new org.apache.commons.lang.time.StopWatch();
System.out.println("getEventFilterTreeData :: Start Time : " + sw.getTime());
sw.start();
// Method execution code
sw.stop();
System.out.println("getEventFilterTreeData :: End Time : " + sw.getTime());
JEP 230:微基准套件
仅供参考,JEP 230: Microbenchmark Suite 是一个 OpenJDK 项目,用于:
在 JDK 源代码中添加一套基本的微基准测试,让开发人员可以轻松运行现有的微基准测试并创建新的微基准测试。
此功能在 Java 12 中提供。
Java 微基准线束 (JMH)
对于 Java 的早期版本,请查看 JEP 230 所基于的 Java Microbenchmark Harness (JMH) 项目。
只是一个小转折,如果您不使用工具并且想要对执行时间较短的方法进行计时:执行多次,每次执行次数加倍,直到达到一秒左右。因此,调用 System.nanoTime 等的时间,以及 System.nanoTime 的准确性对结果影响很大。
int runs = 0, runsPerRound = 10;
long begin = System.nanoTime(), end;
do {
for (int i=0; i<runsPerRound; ++i) timedMethod();
end = System.nanoTime();
runs += runsPerRound;
runsPerRound *= 2;
} while (runs < Integer.MAX_VALUE / 2 && 1000000000L > end - begin);
System.out.println("Time for timedMethod() is " +
0.000000001 * (end-begin) / runs + " seconds");
当然,使用挂钟的注意事项适用:JIT 编译的影响、多线程/进程等。因此,您需要先执行该方法很多次,以便 JIT 编译器完成其工作,然后多次重复此测试并采用最短的执行时间。
为此,我们使用 AspectJ 和 Java 注释。如果我们需要知道某个方法的执行时间,我们只需对其进行注释即可。更高级的版本可以使用自己的日志级别,可以在运行时启用和禁用。
public @interface Trace {
boolean showParameters();
}
@Aspect
public class TraceAspect {
[...]
@Around("tracePointcut() && @annotation(trace) && !within(TraceAspect)")
public Object traceAdvice ( ProceedingJintPoint jP, Trace trace ) {
Object result;
// initilize timer
try {
result = jp.procced();
} finally {
// calculate execution time
}
return result;
}
[...]
}
真的很好的代码。
http://www.rgagnon.com/javadetails/java-0585.html
import java.util.concurrent.TimeUnit;
long startTime = System.currentTimeMillis();
........
........
........
long finishTime = System.currentTimeMillis();
String diff = millisToShortDHMS(finishTime - startTime);
/**
* converts time (in milliseconds) to human-readable format
* "<dd:>hh:mm:ss"
*/
public static String millisToShortDHMS(long duration) {
String res = "";
long days = TimeUnit.MILLISECONDS.toDays(duration);
long hours = TimeUnit.MILLISECONDS.toHours(duration)
- TimeUnit.DAYS.toHours(TimeUnit.MILLISECONDS.toDays(duration));
long minutes = TimeUnit.MILLISECONDS.toMinutes(duration)
- TimeUnit.HOURS.toMinutes(TimeUnit.MILLISECONDS.toHours(duration));
long seconds = TimeUnit.MILLISECONDS.toSeconds(duration)
- TimeUnit.MINUTES.toSeconds(TimeUnit.MILLISECONDS.toMinutes(duration));
if (days == 0) {
res = String.format("%02d:%02d:%02d", hours, minutes, seconds);
}
else {
res = String.format("%dd%02d:%02d:%02d", days, hours, minutes, seconds);
}
return res;
}
long millis = TimeUnit.MILLISECONDS.toMillis(duration) - TimeUnit.SECONDS.toMillis(TimeUnit.MILLISECONDS.toSeconds(duration)); if (days == 0) { res = String.format("%02d:%02d:%02d.%02d", hours, minutes, seconds, millis); } else { res = String.format("%dd%02d:%02d:%02d.%02d", days, hours, minutes, seconds, millis); }
根据 JavaDoc,Spring 提供了一个实用程序类 org.springframework.util.StopWatch:
简单的秒表,允许对多个任务进行计时,显示每个命名任务的总运行时间和运行时间。
用法:
StopWatch stopWatch = new StopWatch("Performance Test Result");
stopWatch.start("Method 1");
doSomething1();//method to test
stopWatch.stop();
stopWatch.start("Method 2");
doSomething2();//method to test
stopWatch.stop();
System.out.println(stopWatch.prettyPrint());
输出:
StopWatch 'Performance Test Result': running time (millis) = 12829
-----------------------------------------
ms % Task name
-----------------------------------------
11907 036% Method 1
00922 064% Method 2
方面:
@Around("execution(* my.package..*.*(..))")
public Object logTime(ProceedingJoinPoint joinPoint) throws Throwable {
StopWatch stopWatch = new StopWatch();
stopWatch.start();
Object retVal = joinPoint.proceed();
stopWatch.stop();
log.info(" execution time: " + stopWatch.getTotalTimeMillis() + " ms");
return retVal;
}
您可以使用 Perf4j。非常酷的实用程序。用法很简单
String watchTag = "target.SomeMethod";
StopWatch stopWatch = new LoggingStopWatch(watchTag);
Result result = null; // Result is a type of a return value of a method
try {
result = target.SomeMethod();
stopWatch.stop(watchTag + ".success");
} catch (Exception e) {
stopWatch.stop(watchTag + ".fail", "Exception was " + e);
throw e;
}
更多信息可以在 Developer Guide 中找到
我写了一个方法,以一种可读的形式打印方法执行时间。例如,要计算 100 万的阶乘,大约需要 9 分钟。所以执行时间打印为:
Execution Time: 9 Minutes, 36 Seconds, 237 MicroSeconds, 806193 NanoSeconds
代码在这里:
public class series
{
public static void main(String[] args)
{
long startTime = System.nanoTime();
long n = 10_00_000;
printFactorial(n);
long endTime = System.nanoTime();
printExecutionTime(startTime, endTime);
}
public static void printExecutionTime(long startTime, long endTime)
{
long time_ns = endTime - startTime;
long time_ms = TimeUnit.NANOSECONDS.toMillis(time_ns);
long time_sec = TimeUnit.NANOSECONDS.toSeconds(time_ns);
long time_min = TimeUnit.NANOSECONDS.toMinutes(time_ns);
long time_hour = TimeUnit.NANOSECONDS.toHours(time_ns);
System.out.print("\nExecution Time: ");
if(time_hour > 0)
System.out.print(time_hour + " Hours, ");
if(time_min > 0)
System.out.print(time_min % 60 + " Minutes, ");
if(time_sec > 0)
System.out.print(time_sec % 60 + " Seconds, ");
if(time_ms > 0)
System.out.print(time_ms % 1E+3 + " MicroSeconds, ");
if(time_ns > 0)
System.out.print(time_ns % 1E+6 + " NanoSeconds");
}
}
new Timer(""){{
// code to time
}}.timeMe();
public class Timer {
private final String timerName;
private long started;
public Timer(String timerName) {
this.timerName = timerName;
this.started = System.currentTimeMillis();
}
public void timeMe() {
System.out.println(
String.format("Execution of '%s' takes %dms.",
timerName,
started-System.currentTimeMillis()));
}
}
使用来自 jcabi-aspects 的 AOP/AspectJ 和 @Loggable
注释,您可以轻松而紧凑地完成它:
@Loggable(Loggable.DEBUG)
public String getSomeResult() {
// return some value
}
对该方法的每次调用都将发送到具有 DEBUG
日志记录级别的 SLF4J 日志记录工具。每条日志消息都将包含执行时间。
在 Spring 框架中,我们有一个名为 StopWatch (org.springframework.util.StopWatch) 的调用
//measuring elapsed time using Spring StopWatch
StopWatch watch = new StopWatch();
watch.start();
for(int i=0; i< 1000; i++){
Object obj = new Object();
}
watch.stop();
System.out.println("Total execution time to create 1000 objects in Java using StopWatch in millis: "
+ watch.getTotalTimeMillis());
This class is normally used to verify performance during proof-of-concept work and in development, rather than as part of production applications.
System.nanoTime()
不好(也适用于 System.currentTimeMillis()
),请参阅@TondaCZE 答案
我基本上做了这个的变体,但考虑到热点编译的工作原理,如果你想获得准确的结果,你需要放弃前几次测量,并确保你在现实世界(阅读特定于应用程序的)应用程序中使用该方法。
如果 JIT 决定编译它,您的数字将有很大差异。所以请注意
有几种方法可以做到这一点。我通常会退回到只使用这样的东西:
long start = System.currentTimeMillis();
// ... do something ...
long end = System.currentTimeMillis();
或与 System.nanoTime() 相同的东西;
对于更多关于基准测试方面的内容,似乎还有这个:http://jetm.void.fm/ 但从未尝试过。
您可以使用提供各种测量仪器的 Metrics 库。添加依赖:
<dependencies>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${metrics.version}</version>
</dependency>
</dependencies>
并为您的环境配置它。
方法可以用 @Timed 注释:
@Timed
public void exampleMethod(){
// some code
}
或用 Timer 包裹的一段代码:
final Timer timer = metricsRegistry.timer("some_name");
final Timer.Context context = timer.time();
// timed code
context.stop();
聚合指标可以导出到控制台、JMX、CSV 或其他。
@Timed
指标输出示例:
com.example.ExampleService.exampleMethod
count = 2
mean rate = 3.11 calls/minute
1-minute rate = 0.96 calls/minute
5-minute rate = 0.20 calls/minute
15-minute rate = 0.07 calls/minute
min = 17.01 milliseconds
max = 1006.68 milliseconds
mean = 511.84 milliseconds
stddev = 699.80 milliseconds
median = 511.84 milliseconds
75% <= 1006.68 milliseconds
95% <= 1006.68 milliseconds
98% <= 1006.68 milliseconds
99% <= 1006.68 milliseconds
99.9% <= 1006.68 milliseconds
如果你想要挂钟时间
long start_time = System.currentTimeMillis();
object.method();
long end_time = System.currentTimeMillis();
long execution_time = end_time - start_time;
正如“skaffman”所说,使用 AOP 或者您可以使用运行时字节码编织,就像单元测试方法覆盖工具用于透明地将时间信息添加到调用的方法一样。
您可以查看 Emma (http://downloads.sourceforge.net/emma/emma-2.0.5312-src.zip?modtime=1118607545&big_mirror=0) 等开源工具工具使用的代码。另一个开源覆盖工具是 http://prdownloads.sourceforge.net/cobertura/cobertura-1.9-src.zip?download。
如果你最终设法做你所设定的,请。与您的 ant 任务/jars 在这里与社区分享。
long startTime = System.currentTimeMillis();
// code goes here
long finishTime = System.currentTimeMillis();
long elapsedTime = finishTime - startTime; // elapsed time in milliseconds
我修改了正确答案的代码以在几秒钟内得到结果:
long startTime = System.nanoTime();
methodCode ...
long endTime = System.nanoTime();
double duration = (double)(endTime - startTime) / (Math.pow(10, 9));
Log.v(TAG, "MethodName time (s) = " + duration);
好的,这是一个简单的类,用于对您的函数进行简单的简单计时。下面有一个例子。
public class Stopwatch {
static long startTime;
static long splitTime;
static long endTime;
public Stopwatch() {
start();
}
public void start() {
startTime = System.currentTimeMillis();
splitTime = System.currentTimeMillis();
endTime = System.currentTimeMillis();
}
public void split() {
split("");
}
public void split(String tag) {
endTime = System.currentTimeMillis();
System.out.println("Split time for [" + tag + "]: " + (endTime - splitTime) + " ms");
splitTime = endTime;
}
public void end() {
end("");
}
public void end(String tag) {
endTime = System.currentTimeMillis();
System.out.println("Final time for [" + tag + "]: " + (endTime - startTime) + " ms");
}
}
使用示例:
public static Schedule getSchedule(Activity activity_context) {
String scheduleJson = null;
Schedule schedule = null;
/*->*/ Stopwatch stopwatch = new Stopwatch();
InputStream scheduleJsonInputStream = activity_context.getResources().openRawResource(R.raw.skating_times);
/*->*/ stopwatch.split("open raw resource");
scheduleJson = FileToString.convertStreamToString(scheduleJsonInputStream);
/*->*/ stopwatch.split("file to string");
schedule = new Gson().fromJson(scheduleJson, Schedule.class);
/*->*/ stopwatch.split("parse Json");
/*->*/ stopwatch.end("Method getSchedule");
return schedule;
}
控制台输出示例:
Split time for [file to string]: 672 ms
Split time for [parse Json]: 893 ms
Final time for [get Schedule]: 1565 ms
您可以使用 spring 核心项目中的秒表类:
代码:
StopWatch stopWatch = new StopWatch()
stopWatch.start(); //start stopwatch
// write your function or line of code.
stopWatch.stop(); //stop stopwatch
stopWatch.getTotalTimeMillis() ; ///get total time
秒表文档:简单的秒表,允许对多个任务进行计时,显示每个命名任务的总运行时间和运行时间。隐藏 System.currentTimeMillis() 的使用,提高应用程序代码的可读性并降低计算错误的可能性。请注意,此对象并非设计为线程安全的,也不使用同步。此类通常用于在概念验证和开发过程中验证性能,而不是作为生产应用程序的一部分。
我机器上的性能测量
System.nanoTime() : 750ns
System.currentTimeMillis() : 18ns
如前所述,System.nanoTime()
被认为是衡量经过的时间。如果在循环等内部使用,请注意成本。