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

📄 clock.java

📁 关于迭代器、构造器
💻 JAVA
字号:
// A simple clock for use in timing things.// (c) 1998, 2001 duane a. baileypackage structure;/** * A simple object for measuring time. * This Clock allows one to measure time between events.  Events may be * from several milliseconds to several seconds apart.  When measuring * events that take considerable time (> 1/10th of a second) it is important * to counteract the effect of scheduling of other system processes. * * A Clock has the following operations: *  <ul> *  <li> reset - clear the clock and reset accumulated time to zero *  <li> start - start the clock and accumulate time *  <li> stop  - stop the clock (and therefore stop accumulating time) *  <li> read  - read a stopped clock to get accumulated time in milliseconds. * </ul> * * typical use: * <pre> *    Clock timer = new Clock(); *    timer.{@link #start()}; *    for (i = 0; i < 100000; i++); *    timer.{@link #stop()}; *    System.out.println("Time to count to 100000: "+timer.{@link #read()}+" seconds."); * </pre> * * @version $Id: Clock.java,v 4.0 2000/12/27 21:21:47 bailey Exp bailey $ * @author, 2001 duane a. bailey */public class Clock{    // we use a native-code library for structures    /**     * An indication of whether or not the clock is running     */    protected boolean running;	// is the clock on?    /**     * The millisecond that the clock started.     */    protected long strt;	// starting millisecond count    /**     * The total number of milliseconds elapsed.     */    protected long accum;	// total milliseconds    /**     * Constructs a stopwatch for timing events to the milliseconds.     *     * @post returns a stopped clock     */    public Clock()    {	running = false;	strt = 0;	accum = 0;    }    /**     * Start the clock running.     *     * @post clock is stopped     * @pre starts clock, begins measuring possibly accumulated time     */    public void start()    {	running = true;	strt = System.currentTimeMillis();    }    /**     * Stop the clock.  Time does not accumulate.     *     * @pre clock is running     * @post stops clock, and accumulates time     */    public void stop()    {	running = false;	accum += (System.currentTimeMillis()-strt);    }    /**     * Read the value on the stop watch.     *     * @pre clock is stopped     * @post returns the accumulated time on the clock     *      * @return A double representing the number of seconds elapsed.     */    public double read()    {	return (double)accum/(double)1000.0;    }    /**     * Resets the time on the clock to zero.     *     * @post stops running clock and clears the accumulated time     */    public void reset()    {	running = false;	accum = 0;    }    /**     * Generates string representation of clock.     *     * @post returns a string representation of the clock     *      * @return A string representing this clock.     */    public String toString()    {	return "<Clock: "+read()+" seconds>";    }}

⌨️ 快捷键说明

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