Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Use class

class Greeting {
    public static void hello() {
       System.out.println("Hello World");
    }
}

public class GreetingsA {
    public static void main(String[] args) {
        System.out.println("Hello");
        Greeting.hello();
    }
}

javac GreetingsA.java
java GreetingsA
Hello
Hello World