第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Java 定時器計數(shù)太快

Java 定時器計數(shù)太快

繁華開滿天機 2023-11-10 15:25:48
我想寫一個計時器類,每秒計數(shù)到0,但似乎計數(shù)太快了。我究竟做錯了什么?public class Eieruhr {    private int x;    public Eieruhr (int x){        this.x = x;    }    public static void main(String[] args){        Eieruhr eu = new Eieruhr(10);        eu.start();    }    public void start(){        for(int i = 0; i <= x; x--){            long s = System.nanoTime();            while( ((System.nanoTime() - s) / 100000000) < x);            System.out.println("tick - " + x);        }    }}
查看完整描述

1 回答

?
阿晨1998

TA貢獻2037條經(jīng)驗 獲得超6個贊

我建議你使用TimeUnit.SECONDS.sleep(1). 看一下代碼:


public class Eieruhr {

    private int x;


    public Eieruhr(int x) {

        this.x = x;

    }


    public static void main(String[] args) throws InterruptedException {

        Eieruhr eu = new Eieruhr(10);

        eu.start();

    }


    public void start() throws InterruptedException {

        for (int i = 0; i < x; i++) {

            TimeUnit.SECONDS.sleep(1);

            System.out.println(new Date() + " tick - " + i);

        }

    }

}

輸出:


Sat Oct 19 15:11:37 EEST 2019 tick - 0

Sat Oct 19 15:11:38 EEST 2019 tick - 1

Sat Oct 19 15:11:39 EEST 2019 tick - 2

Sat Oct 19 15:11:40 EEST 2019 tick - 3

Sat Oct 19 15:11:41 EEST 2019 tick - 4

Sat Oct 19 15:11:42 EEST 2019 tick - 5


查看完整回答
反對 回復(fù) 2023-11-10
  • 1 回答
  • 0 關(guān)注
  • 155 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號