Thread.sleep(1000); // schlaeft 1 Sekunde
Danke für die schnelle Antwort, aber wenn ich das in das Programm einbaue kommt folgendes:
unreported exception java.lang.InterruptedException; must be caught or declared to be thrown
Wenn ich dann
try {
thread.sleep(1000);
}
catch(interuptedException e) {
}
(Auch wenn ich interupted mit "rr" also interrupted schreibe) kommt folgender Fehler:
cannot resolve Symbol class inter(r)uptedException
KAnn mir da jemand weiterhelfen?
noch eine Frage:
warum muss man überhaupt mit "catch(interuptedException e)" arbeiten?