java實(shí)現(xiàn)時(shí)鐘代碼怎么寫

小億
113
2023-08-29 16:29:04

以下是一個(gè)簡(jiǎn)單的Java代碼示例,用于實(shí)現(xiàn)一個(gè)時(shí)鐘:

import java.time.LocalTime;
import java.time.format.DateTimeFormatter;
public class Clock {
public static void main(String[] args) {
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("HH:mm:ss");
while (true) {
LocalTime currentTime = LocalTime.now();
String formattedTime = currentTime.format(formatter);
System.out.println(formattedTime);
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}

這段代碼使用了java.time包中的LocalTime類來(lái)獲取當(dāng)前時(shí)間,并使用DateTimeFormatter類將時(shí)間格式化為"HH:mm:ss"的字符串。然后,通過(guò)一個(gè)無(wú)限循環(huán)來(lái)不斷獲取當(dāng)前時(shí)間并打印出來(lái)。使用Thread.sleep()方法使程序休眠1秒鐘,以模擬時(shí)鐘每秒的走時(shí)效果。

在控制臺(tái)中運(yùn)行該程序,可以看到輸出的時(shí)間會(huì)不斷更新,模擬了一個(gè)簡(jiǎn)單的時(shí)鐘效果。

0