Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
try{
Thread.sleep(zeit in ms);
}
catch (InterruptedException e) { }
public void sleep( long ms ){
long first = System.currentTimeMillis();
while( true ){
if( System.currentTimeMillis() >= ( first + ms ) ){
break;
}
}
while (Bedingung nicht erfüllt UND/ODER noch Zeit )
{
try { wait( ZEIT) ; }
catch (InterruptedException e) { ...... }
}
// Aufwecken - z.B. wenn eine Bedingung eingetreten ist (z.B. Tastendruck)
notify()
// oder alle "Schlafenden" wecken
notifyAll()