:omg: .... ich finde diesen Smiley echt cool
hab versucht herauszufinden, welche Funktion das Schlüsselwort "return" hat aber hab leider nichts gefunden :confused:
Warum reicht System.out.println() nicht aus??
PHP
public class Umtausch {
public static void swap (int x, int y){
int temp;
temp=x;
x=y;
y=temp;
System.out.println ("Umgetauscht: a=" + x + " und " + "b= " + y);
return; // hier an diese Stelle
}
public static void main (String [] args){
int x=2;
int y=3;
System.out.println ("Vorher: a=" + x + " und " + "b= " + y );
swap(x,y);
}
}
Alles anzeigen
// javac Umtausch.java
// java Umtausch
// Vorher: a=2 und b= 3
// Umgetauscht: a=3 und b= 2