A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Java program to sleep a thread
Q:

Java program to sleep a thread

0

Java program to sleep a thread

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to sleep a thread is given below. The given program is compiled and executed successfully.

// Java program to sleep a thread

class MyThread implements Runnable {
  public void run() {
    int i = 0;

    try {
      for (i = 1; i <= 3; i++) {
        System.out.println("Thread " + Thread.currentThread().getId() + " is running");

        Thread.sleep(1000);
      }
    } catch (Exception e) {

    }
  }
}

public class Main {
  public static void main(String[] args) {
    Thread t1 = new Thread(new MyThread());
    Thread t2 = new Thread(new MyThread());
    Thread t3 = new Thread(new MyThread());

    t1.start();
    t2.start();
    t3.start();
  }
}

Output:

Thread 11 is running
Thread 12 is running
Thread 10 is running
Thread 11 is running
Thread 12 is running
Thread 10 is running
Thread 11 is running
Thread 12 is running
Thread 10 is running

Explanation:

In the above program, we created two classes MyThread and Main. We created MyThread class by implementing the Runnable interface.

The Main class contains a main() method. The main() method is the entry point for the program. Here, we created the three threads and executed them. In the run() method, we used Thread.Sleep() method to sleep thread execution for a specific time.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now