D. Pinard
0
Q:

java thread class sleep


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));
        
    }

}
6
Thread.sleep(2000);
1

New to Communities?

Join the community