Answers for "demonstrate the use of sleep method of thread class in java"

15

thread sleep java

package com.journaldev.threads;

public class ThreadSleep {

    public static void main(String[] args) throws InterruptedException {
        long start = System.currentTimeMillis();
        Thread.sleep(2000);
        System.out.println("Sleep time in ms = "+(System.currentTimeMillis()-start));
        
    }

}
Posted by: Guest on April-09-2020
4

java thread class sleep

Thread.sleep(2000);
Posted by: Guest on May-08-2020

Code answers related to "demonstrate the use of sleep method of thread class in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language