为了账号安全,请及时绑定邮箱和手机立即绑定

将当前时间保存为变量并从该值继续计数

将当前时间保存为变量并从该值继续计数

婷婷同学_ 2021-04-04 17:13:16
我正在制作秒表,努力使停止功能正常工作。当我在7秒钟后停止计时器并重新启动时,它会回落至0秒并重新开始;但是,我希望它从7秒开始。有时,秒表会中断并持续显示1.529679177849E9秒。我知道我需要将节省的时间存储在变量中,但是我不知道如何。您能帮我解决这个问题吗?public class stopwatch {    public long thetime = 0;    public long stoppedtime = 0;    public boolean ticking = false;    public static void main(String[] args) {        stopwatch s = new stopwatch();        Scanner sc = new Scanner(System.in);        boolean loop = true;        while (loop = true) {            System.out.println("1 start 2 is started 3 stop 4 "                    + "reset 5 check time 6 stop");            int i = sc.nextInt();            if (i == 1) {                s.start();            } else if (i == 2) {                System.out.println(s.isStarted());            } else if (i == 3) {                s.stop();            } else if (i == 4) {                s.reset();            } else if (i == 5) {                System.out.println("saved time is " + s.time() + " Seconds");            } else if (i == 6) {                System.out.println("closing");                loop = false;                break;            } else {                System.out.println("invalid");            }        }    }    public void start() {        if (ticking == true) {            thetime = thetime;        } else {            thetime = System.currentTimeMillis();            ticking = true;        }    }    public boolean isStarted() {        return ticking;    }    public void stop() {        if (ticking == false) {            stoppedtime = stoppedtime;        } else {            stoppedtime = thetime;            ticking = false;        }    }    public void reset() {        thetime = 0;        stoppedtime = 0;    }
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 116 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信