JAVA中如何设置等待时间(非线程)

哪位大大加我HI吧。代码字数过多。
2024-11-16 17:33:12
推荐回答(4个)
回答1:

java中使用用线程控制Task任务,启动下面的线程就可以了,new Thread(new Task()).start() ;public class
Task implements Runnable {//新建一个任务
private TextArea textArea;

public Task(TextArea textArea){
this.textArea = textArea;
}
public void run() {
while (true) {
this.textArea.setText("这里设置: 输出的一段文字");

try {
Thread.sleep(500); // 这里设置:隔多长时间
} catch (Exception e) {
e.printStackTrace();
}
}
}
}

回答2:

把前面的代码也贴出来
你那报的是空指针 变量未初始化

回答3:

都是用Thread的sleep方法
try{
Thread.sleep(1000);//等待1秒
}catch(Exception e){
}

回答4:

的确要帖你的代码才行