C#中有一个stopwatch的功能,主要是用来监测程序执行时间的。java之前一直都在用如下方式完成:

     public static void main(String[] args) {
long startTime=System.currentTimeMillis(); //获取开始时间 //函数主体代码
//... long endTime=System.currentTimeMillis(); //获取结束时间
System.out.println("程序运行时间: "+(endTime-startTime)+"ms"); }

原生监测方式

今天上网搜索了一下,找到了一个比较类似的:

 import org.apache.commons.lang3.time; 

         StopWatch watch=new  StopWatch();
watch.start();
watch.stop();
watch.getSplitTime();

apache.commons.lang3

但是上面的时间处理只支持ms,有些时间比较长还得自己处理,就又找了一个:

 import java.util.concurrent.TimeUnit;
import com.google.common.base.Stopwatch; Stopwatch watch = new Stopwatch();
watch.start();
watch.stop();
watch.elapsed(TimeUnit.MINUTES);

google stopwatch

时间可以支持多种格式,可以自由选择,但是看了下源码,感觉里面好多方法都是  @Deprecated,估计是比较老的api了:

 /*
* Copyright (C) 2008 The Guava Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/ package com.google.common.base; import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.base.Preconditions.checkState;
import static java.util.concurrent.TimeUnit.MICROSECONDS;
import static java.util.concurrent.TimeUnit.MILLISECONDS;
import static java.util.concurrent.TimeUnit.NANOSECONDS;
import static java.util.concurrent.TimeUnit.SECONDS; import com.google.common.annotations.Beta;
import com.google.common.annotations.GwtCompatible;
import com.google.common.annotations.GwtIncompatible; import java.util.concurrent.TimeUnit; /**
* An object that measures elapsed time in nanoseconds. It is useful to measure
* elapsed time using this class instead of direct calls to {@link
* System#nanoTime} for a few reasons:
*
* <ul>
* <li>An alternate time source can be substituted, for testing or performance
* reasons.
* <li>As documented by {@code nanoTime}, the value returned has no absolute
* meaning, and can only be interpreted as relative to another timestamp
* returned by {@code nanoTime} at a different time. {@code Stopwatch} is a
* more effective abstraction because it exposes only these relative values,
* not the absolute ones.
* </ul>
*
* <p>Basic usage:
* <pre>
* Stopwatch stopwatch = new Stopwatch().{@link #start start}();
* doSomething();
* stopwatch.{@link #stop stop}(); // optional
*
* long millis = stopwatch.elapsed(MILLISECONDS);
*
* log.info("that took: " + stopwatch); // formatted string like "12.3 ms"
* </pre>
*
* <p>Stopwatch methods are not idempotent; it is an error to start or stop a
* stopwatch that is already in the desired state.
*
* <p>When testing code that uses this class, use the {@linkplain
* #Stopwatch(Ticker) alternate constructor} to supply a fake or mock ticker.
* <!-- TODO(kevinb): restore the "such as" --> This allows you to
* simulate any valid behavior of the stopwatch.
*
* <p><b>Note:</b> This class is not thread-safe.
*
* @author Kevin Bourrillion
* @since 10.0
*/
@Beta
@GwtCompatible(emulated = true)
public final class Stopwatch {
private final Ticker ticker;
private boolean isRunning;
private long elapsedNanos;
private long startTick; /**
* Creates (but does not start) a new stopwatch using {@link System#nanoTime}
* as its time source.
*/
public Stopwatch() {
this(Ticker.systemTicker());
} /**
* Creates (but does not start) a new stopwatch, using the specified time
* source.
*/
public Stopwatch(Ticker ticker) {
this.ticker = checkNotNull(ticker, "ticker");
} /**
* Returns {@code true} if {@link #start()} has been called on this stopwatch,
* and {@link #stop()} has not been called since the last call to {@code
* start()}.
*/
public boolean isRunning() {
return isRunning;
} /**
* Starts the stopwatch.
*
* @return this {@code Stopwatch} instance
* @throws IllegalStateException if the stopwatch is already running.
*/
public Stopwatch start() {
checkState(!isRunning,
"This stopwatch is already running; it cannot be started more than once.");
isRunning = true;
startTick = ticker.read();
return this;
} /**
* Stops the stopwatch. Future reads will return the fixed duration that had
* elapsed up to this point.
*
* @return this {@code Stopwatch} instance
* @throws IllegalStateException if the stopwatch is already stopped.
*/
public Stopwatch stop() {
long tick = ticker.read();
checkState(isRunning,
"This stopwatch is already stopped; it cannot be stopped more than once.");
isRunning = false;
elapsedNanos += tick - startTick;
return this;
} /**
* Sets the elapsed time for this stopwatch to zero,
* and places it in a stopped state.
*
* @return this {@code Stopwatch} instance
*/
public Stopwatch reset() {
elapsedNanos = 0;
isRunning = false;
return this;
} private long elapsedNanos() {
return isRunning ? ticker.read() - startTick + elapsedNanos : elapsedNanos;
} /**
* Returns the current elapsed time shown on this stopwatch, expressed
* in the desired time unit, with any fraction rounded down.
*
* <p>Note that the overhead of measurement can be more than a microsecond, so
* it is generally not useful to specify {@link TimeUnit#NANOSECONDS}
* precision here.
*
* @since 14.0 (since 10.0 as {@code elapsedTime()})
*/
public long elapsed(TimeUnit desiredUnit) {
return desiredUnit.convert(elapsedNanos(), NANOSECONDS);
} /**
* Returns the current elapsed time shown on this stopwatch, expressed
* in the desired time unit, with any fraction rounded down.
*
* <p>Note that the overhead of measurement can be more than a microsecond, so
* it is generally not useful to specify {@link TimeUnit#NANOSECONDS}
* precision here.
*
* @deprecated Use {@link Stopwatch#elapsed(TimeUnit)} instead. This method is
* scheduled to be removed in Guava release 16.0.
*/
@Deprecated
public long elapsedTime(TimeUnit desiredUnit) {
return elapsed(desiredUnit);
} /**
* Returns the current elapsed time shown on this stopwatch, expressed
* in milliseconds, with any fraction rounded down. This is identical to
* {@code elapsed(TimeUnit.MILLISECONDS)}.
*
* @deprecated Use {@code stopwatch.elapsed(MILLISECONDS)} instead. This
* method is scheduled to be removed in Guava release 16.0.
*/
@Deprecated
public long elapsedMillis() {
return elapsed(MILLISECONDS);
} /**
* Returns a string representation of the current elapsed time.
*/
@GwtIncompatible("String.format()")
@Override public String toString() {
return toString(4);
} /**
* Returns a string representation of the current elapsed time, choosing an
* appropriate unit and using the specified number of significant figures.
* For example, at the instant when {@code elapsed(NANOSECONDS)} would
* return {1234567}, {@code toString(4)} returns {@code "1.235 ms"}.
*
* @deprecated Use {@link #toString()} instead. This method is scheduled
* to be removed in Guava release 15.0.
*/
@Deprecated
@GwtIncompatible("String.format()")
public String toString(int significantDigits) {
long nanos = elapsedNanos(); TimeUnit unit = chooseUnit(nanos);
double value = (double) nanos / NANOSECONDS.convert(1, unit); // Too bad this functionality is not exposed as a regular method call
return String.format("%." + significantDigits + "g %s",
value, abbreviate(unit));
} private static TimeUnit chooseUnit(long nanos) {
if (SECONDS.convert(nanos, NANOSECONDS) > 0) {
return SECONDS;
}
if (MILLISECONDS.convert(nanos, NANOSECONDS) > 0) {
return MILLISECONDS;
}
if (MICROSECONDS.convert(nanos, NANOSECONDS) > 0) {
return MICROSECONDS;
}
return NANOSECONDS;
} private static String abbreviate(TimeUnit unit) {
switch (unit) {
case NANOSECONDS:
return "ns";
case MICROSECONDS:
return "\u03bcs"; // 渭s
case MILLISECONDS:
return "ms";
case SECONDS:
return "s";
default:
throw new AssertionError();
}
}
}

google stopwatch source code

  

最新文章

  1. java数据类型
  2. Java Thread 多线程 介绍
  3. overflow:hidden清楚浮动的影响
  4. Zabbix实现微信告警
  5. Ext.Net学习笔记13:Ext.Net GridPanel Sorter用法
  6. windows下安装python的C扩展编译环境(解决“Unable to find vcvarsall.bat”)
  7. WCF技术剖析之七:如何实现WCF与EnterLib PIAB、Unity之间的集成
  8. jmeter测试计划
  9. 【性能测试工具】- ApacheBench
  10. java里程碑之泛型--泛型基本语法
  11. jquery empty()方法在IE下报错的解决办法
  12. java38
  13. eclipse下的spring环境配置
  14. MySQL Execution Plan--NOT EXISTS子查询优化
  15. VMware-workstation12.5.6 新建虚拟机 安装 centos6.5
  16. Python2.7-glob
  17. 洛谷P4382 [八省联考2018]劈配(网络流,二分答案)
  18. 关于在函数中使用Array.prototype.slice.call而不是直接用slice
  19. 可视化库-Matplotlib-直方图(第四天)
  20. oracle数据库建表设置自增主键

热门文章

  1. Drools 函数学习
  2. RadioButton(单选按钮)文字在按钮的左边
  3. Puppet自动化部署-前期环境准备(2)
  4. Linux学习笔记(10)-信号
  5. 转:简单窗体振动-WaitForSingleObject,消息,winapi
  6. pair的使用
  7. 【BFS】HDU 1495
  8. 解决nginx中proxy_pass到tomcat的session丢失问题
  9. DES加密
  10. python中类的三种属性