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 メソッドで継続的にループできる方法はありますか?