A Developer Gateway To IT World...

Techie Uncle Software Testing Core Java Java Spring C Programming Operating System HTML 5 Java 8 ES6 Project

Program for sleep method

class sleep
{
    public static void main(String args[]) throws InterruptedException
    {
       
        for(int i=0; i<10;i++)
        {
            System.out.println("This is your Thread"+i);
            Thread.sleep(5000);
        }
    }
}


output:



LEARN TUTORIALS

.

.