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

📄 call.java

📁 BOOK:Beginning Algorithms Code Examples
💻 JAVA
字号:
package com.wrox.algorithms.queues;/** * Represents a telephone call. * */public class Call {    /** The id of the call. */    private final int _id;    /** The duration for the call. */    private final int _duration;    /** The time at which this call was started. */    private final long _startTime;    /**     * Constructor.     *     * @param id The id of the call.     * @param duration The duration for the call.     */    public Call(int id, int duration) {        assert duration >= 0 : "duration can't be < 0";        _id = id;        _duration = duration;        _startTime = System.currentTimeMillis();    }    /**     * Answers the call.     */    public void answer() {        System.out.println(this + " answered; waited " + (System.currentTimeMillis() - _startTime) + " milliseconds");        try {            Thread.sleep(_duration);        } catch (InterruptedException e) {            // Ignore        }    }    public String toString() {        return "Call " + _id;    }}

⌨️ 快捷键说明

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