我希望int time = 0
每秒增加 1 次,并能够暂停和恢复。
问问题
76 次
2 回答
1
对于计时器从这里开始java timers tutorial给它一个破解并在你卡住时问另一个问题。
于 2012-12-07T01:23:10.173 回答
0
final AtomicLong i = new AtomicLong(0);
Thread th = new Thread() {
@Override
public void run() {
try {
while (true) {
long lastSeconds = System.currentTimeMillis() / 1000;
sleep(100);
long delta = System.currentTimeMillis() / 1000 - lastSeconds;
i.getAndAdd(delta);
if (delta > 0)
System.out.println(i.get());
}
}
catch (InterruptedException e) {
e.printStackTrace();
}
}
};
th.start();
于 2012-12-07T01:23:52.447 回答