Is it different than C or C#?
|
|
Java has one keyword, for, but it can be used in two different manner:
for-each style:
it works for any type that implements The latter form works also for arrays, see this question for a more "phisophical approach". |
|||
|
|
|
|
The following demonstrates the syntax of a java for loop (from the for loop in Java):
Also see the Wiki entry on For loop |
||||||
|
|
|
The only difference between java's for-loop syntax and C's is you can declare variables in the initialization field (1st section) of the loop |
||
|
|
|
Check this link for yourself. |
||
|
|
