Verbesserte 4 Schleife
for (int myValue : myArray) {
System.out.println(myValue);
}
Wandering Warbler
for (int myValue : myArray) {
System.out.println(myValue);
}
for (int i = 0; i < myArray.length; i++) {
System.out.println(myArray[i]);
}
String[] myArray = {"Enhanced for loops", "are cool", "and save time!"};
for (String myValue : myArray) {
System.out.println(myValue);
}
/*Result:
Enhanced for loops
are cool
and save time!
*/