In this section we learn how we can make a program so that there are delay between the execution of program.
In this example we are using a sleep() method. We are passing 4000 to give the waiting time to our thread. This mean at execution time our program will wait for 4000 millisecond. The sleep() method can throws an InterruptedException .Show we must have write the sleep() method within try/catch block.
public class DelayExample{ |
0 comments