Answers for "java wait milliseconds"

2

java utils wait for seconds

try        
{
    Thread.sleep(1000);
} 
catch(InterruptedException ex) 
{
    Thread.currentThread().interrupt();
}
Posted by: Guest on November-18-2020
0

sleep for milliseconds in java

public class SleepThingy {
	public static void main(String[] args)
    throws InterruptedException {
    	// the Thread.sleep function throws an InterruptedException
      	for (int i = 1; i < 11; i++) {
        	System.out.println(i);
          	Thread.sleep(1000); // sleep 1000 ms or 1 sec
        }
    }
}
Posted by: Guest on March-21-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language