mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-24 15:03:19 +03:00
Merge pull request #1115 from drguildo/master
Improve description of the for loop.
This commit is contained in:
commit
bb7560f63e
@ -225,11 +225,12 @@ public class LearnJava {
|
||||
System.out.println("fooFor Value: " + fooFor);
|
||||
|
||||
// For Each Loop
|
||||
// An automatic iteration through an array or list of objects.
|
||||
// The for loop is also able to iterate over arrays as well as objects
|
||||
// that implement the Iterable interface.
|
||||
int[] fooList = {1, 2, 3, 4, 5, 6, 7, 8, 9};
|
||||
// for each loop structure => for (<object> : <array_object>)
|
||||
// reads as: for each object in the array
|
||||
// note: the object type must match the array.
|
||||
// for each loop structure => for (<object> : <collection>)
|
||||
// reads as: for each element in the collection
|
||||
// note: the object type must match the element type of the collection.
|
||||
|
||||
for (int bar : fooList) {
|
||||
System.out.println(bar);
|
||||
|
Loading…
Reference in New Issue
Block a user