public Thread thread = new Thread();
public void start() {
running = true;
thread.start();
}
public void run() {
while(running) {
System.out.println("test");
try {
thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
我的问题是程序不会打印出“测试”,也不会看起来循环,尽管“运行”是真的。有没有办法可以在 run 方法中连续循环?