Q:

Java program to sleep program execution for specified milliseconds

belongs to collection: Java Basic Programs

0

Java program to sleep program execution for specified milliseconds

All Answers

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

In this program, we will sleep program execution 4 specified milliseconds using Thread.Sleep() method.

Program/Source Code:

The source code to sleep program execution for specified milliseconds is given below. The given program is compiled and executed successfully.

// Java program to sleep program 
// for specified milliseconds

public class Main {
  public static void main(String[] args) {
    try {
      System.out.println("Hello");
      Thread.sleep(1000);
      System.out.println("Hii");
    } catch (Exception e) {
      System.out.println(e);
    }
  }
}

Output:

Hello
Hii

Explanation:

In the above program, we created a public class Main. It contains a static method main().

The main() method is an entry point for the program. Here, we printed the "Hello" message. Then we slept program execution for 1000 milliseconds. After that, we printed the "Hii" message.

 

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

total answers (1)

Java Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Java program to design a digital clock... >>
<< Java program to clear console screen...