急求!java 怎样控制每步操作的时间间隔
发布网友
发布时间:2022-10-18 09:52
我来回答
共3个回答
热心网友
时间:2023-11-11 20:34
用线程当中的sleep方法,比如停两秒就是Thread.sleep(2000);
热心网友
时间:2023-11-11 20:35
public void run() {
while(!Thread.currentThread().isInterrupted()){
try{
Thread.sleep(100);
}catch(InterruptedException e){
Thread.currentThread().interrupt();
}
postInvalidate();
}
}
记住开线程哈new Thread(this).start();
热心网友
时间:2023-11-11 20:35
线程有个wait()方法吧