msgbartop
Gruppe F1
msgbarbottom

12 Dec 08 For Each-Schleifen Beispiel

Hier ein einfaches Beispiel für das for each Schleifen-Konstrukt in Java:

ForEachExample.java

public class ForEachExample {
  public static void main(String[] args) {
    int[] feld = new int[] { 1,2,3,4 };

	for ( int eintrag : feld ) {
		System.out.println( eintrag );
	}
  }
}

Tags:



Leave a Comment

You must be logged in to post a comment.