sleep() java
import java.util.concurrent.TimeUnit
try {
TimeUnit.SECONDS.sleep(1);
}
catch (Exception e) {
System.out.println("Oops! Something went wrong!")
}
sleep() java
import java.util.concurrent.TimeUnit
try {
TimeUnit.SECONDS.sleep(1);
}
catch (Exception e) {
System.out.println("Oops! Something went wrong!")
}
java swing timer sleep
System.out.println("Hi");
//Now it will pause
try{
Thread.sleep(5000)//Time in milliseconds->5000==5 seconds
//^freezes whole program for amount of time
System.out.println("Hola");//Appears after 5 seconds
}
catch(InterruptedException e){
System.err.println(e.getMessage());
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us