delay in java method with or without using thread code example
Example: java delay
Syntax :
=========================================================
Thread.sleep(1000); // 1000 milliseconds.. |
=========================================================
int i=0;
for(;;){
Thread.sleep(2000); // set time delay to 2 seconds..
System.out.println(i++); // output : every output will display after 2 seconds..
}