thread sleep code example

Example 1: c# Sleep

using System.Threading;

static void Main()
{
  //do stuff
  Thread.Sleep(5000) //will sleep for 5 sec
}

Example 2: java sleep in code

import java.util.concurrent.TimeUnit

TimeUnit.SECONDS.sleep(1);
or
TimeUnit.MINUTES.sleep(1);

Example 3: 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));
        
    }

}

Example 4: java thread class sleep

Thread.sleep(2000);

Tags: