Answers for "Fill in the blanks in the following code so that the Thread can sleep for 100milisceonds and 50 nanoseconds.........."

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 "Fill in the blanks in the following code so that the Thread can sleep for 100milisceonds and 50 nanoseconds.........."

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language