@Coder100 I can’t get it to work.. this is the code I have
class DataBase implements Runnable {
Thread t;
static void main(String User){
System.out.println("Welcome " + User);
while (User == "Kris79"){
Thread.sleep(5000);
System.out.println("0 0");
}
}
}
It keeps saying that the class part has a error
Is there anyway to delay code in java on here?
I’m trying to make something in java and I don’t know how to delay it.
You can use sleep the thread, which delays code.
https://www.tutorialspoint.com/java/lang/thread_sleep_millis.htm
it's in milliseconds, however.
class DataBase implements Runnable {
Thread t;
static void main(String User){
System.out.println("Welcome " + User);
while (User == "Kris79"){
Thread.sleep(5000);
System.out.println("0 0");
}
}
}
It keeps saying that the class part has a error