首页 相关文章 使用StopWatch类输出时间戳

使用StopWatch类输出时间戳


  package com.generationJava.test;
  
  /**
  
  * Useful when doing timings in a debug or test situation.
  
  */
  
  public class StopWatch {
  
  static public int AN_HOUR = 60 * 60 * 1000;
  
  static public int A_MINUTE = 60 * 1000;
  
  private long startTime = -1;
  
  private long stopTime = -1;
  
  /**
  
  * Start the stopwatch.
  
  */
  
  public void start() {
  
  this.startTime = System.currentTimeMillis();
  
  }
  
  /**
  
  *...[ 查看全文 ]

2016-02-19 标签:

使用StopWatch类输出时间戳的相关文章

手机页面
收藏网站 回到头部