programming-examples/java/Core_Java/Making the application wait for some given time.java
2019-11-15 12:59:38 +01:00

31 lines
743 B
Java

Making the application wait for some given time
import java.util.*;
public class WaitForSomeTime
{
public static void main(String args[])
{
WaitForSomeTime waitForSomeTime = new WaitForSomeTime();
waitForSomeTime.myMethod();
}
public void myMethod()
{
System.out.println("Starting......");
// pause for a while
Thread thisThread = Thread.currentThread();
try
{
thisThread.sleep(10000);
}
catch (Throwable t)
{
throw new OutOfMemoryError("An Error has occured");
}
System.out.println("Ending......");
}
}