public static void method name () {verarbeitung;}
public static void hello() {
System.out.println("hello world");
}
Verfügbar durch Ändern des Typs und der Anzahl der Argumente
Gleicher Methodenname, aber unterschiedliche Argumente
public static void hello() {
System.out.println("hello world");
}
public static void hello(String name) {
System.out.println("Hallo" + name + "Herr.");
}
Recommended Posts