⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stopwatch.java

📁 数据挖掘中的Aprior算法java实现
💻 JAVA
字号:
package datamining;

import java.util.*;

/**
 * Class for timing applications. Provides a simple interface for 
 * the basic functionality of a stop watch and printing the results.
 *
 * @author Michael Holler
 * @version 0.1, 11.03.2004 
 */
public class StopWatch {

  private Vector laps;
  private boolean running;

  /**
   * Basic constructor for getting an instance of a StopWatch.
   */
  public StopWatch() {
    this.laps = new Vector();
    this.running = false;
  }

  /**
   * Starts the stop watch, saves the start time and clears old times.
   */
  public void start() {
    this.laps.clear();
    this.running = true;
    this.laps.add(new Long(System.currentTimeMillis()));
  }

  /**
   * Stops the watch and saves the end time.
   */
  public void stop() {
    this.laps.add(new Long(System.currentTimeMillis()));
    this.running = false;
  }

  /**
   * Saves a lap time if the watch is running.
   */
  public void lap() {
    if (running)
      this.laps.add(new Long(System.currentTimeMillis()));
  }
  
  /**
   * Prints out the lap times and the total time.
   */
  public void print() {
    StringBuffer print = new StringBuffer("\n");

    if (this.laps.size() > 2) {
      Enumeration e = this.laps.elements();
      Long millis = (Long)e.nextElement();
      int i = 1;
      while (!millis.equals((Long)this.laps.lastElement())) {
        Long tmp = new Long(millis.longValue());
        millis = (Long)e.nextElement();
        print.append("lap " + i +": ");
        print.append(delta(tmp, millis));
        print.append(" seconds\n");
	i++;
      }
    }
    
    print.append(delta((Long)this.laps.firstElement(), (Long)this.laps.lastElement()));
    print.append(" seconds\n");
    
    System.out.println(print.toString());
  }

  /**
   * Prints out the lap time of the last recorded lap.
   */
  public void printLap() {
    StringBuffer print = new StringBuffer("last lap: ");
    print.append(delta((Long)this.laps.elementAt(this.laps.size()-2), (Long)this.laps.lastElement()));
    print.append(" seconds");
    
    System.out.println(print.toString());
  }

  /**
   * Calculates the difference between the two times given as parameter.
   *
   * @param	millis1		the first time point
   * @param	millis2		the second time point
   * @return			the difference of te two
   */
  private double delta(Long millis1, Long millis2) {
    return ((millis2.longValue() - millis1.longValue())*1.0/1000);
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -