Classes / Methods

class Greeting {
    //in Java there is no default parameters values
    static void SayGoodby(String message) {
        System.out.println(message);
    }

    static void SayGoodby() {
        SayGoodby("Goodby!");
    }
}

Greeting.SayGoodby();
//printed "Goodby!"

Greeting.SayGoodby("see you");
//printed "see you"