gpt4 book ai didi

java - java 中的秒表

转载 作者:行者123 更新时间:2023-12-02 00:18:02 25 4
gpt4 key购买 nike

我正在尝试用java制作一个秒表,看起来像00:00:00,一旦按下按钮就开始计时。由于某种原因它不起作用,但我确信我缺少一些东西。

for (;;)
{
if (pause == false)
{
sec++;

if (sec == 60)
{
sec = 0;
mins++;
}
if (mins == 60)
{
mins = 0;
hrs++;
}

String seconds = Integer.toString(sec);
String minutes = Integer.toString(mins);
String hours = Integer.toString(hrs);

if (sec <= 9)
{
seconds = "0" + Integer.toString(sec);
}
if (mins <= 9)
{
minutes = "0" + Integer.toString(mins);
}
if (hrs <= 9)
{
hours = "0" + Integer.toString(hrs);
}

jLabel3.setText(hours + ":" + minutes + ":" + seconds);
}

最佳答案

我不确定问题是什么,但将此 block 放入 for(;;) 循环中绝对是致命的。

尝试这样的方法来代替 for 循环:

// "1000" here means 1000 milliseconds (1sec). 
new Timer( 1000, new ActionListener(){
public void actionPerformed( ActionEvent e ){
if( pause == false ){
// ... code from above with the for(;;)
}
}
}.start();

您可以阅读documentation for the timer class了解更多信息。

关于java - java 中的秒表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11567586/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com