Wait.java Source code

Java tutorial

Introduction

Here is the source code for Wait.java

Source

class Wait {
    public static void bySeconds(long s) {
        try {
            Thread.currentThread().sleep(s * 1000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}

public class Main {
    public static void main(String args[]) {
        System.out.println("Wait");
        Wait.bySeconds(5);
        System.out.println("Done");
    }
}