Java Programming/Keywords/for
From Wikibooks, open books for an open world
< Java Programming | Keywords
for is a Java keyword.
It starts a looping block.
The general syntax of a for, using Extended Backus-Naur Form, is
for-looping-statement ::=forcondition-clause single-statement | block-statement condition-clause ::=( before-statement;Boolean Expression; after-statement )single-statement ::= Statement block-statement ::={Statement [ Statement ]}
For example:
|
for ( int i=0; i < maxLoopIter; i++ ) {
System.println("Iter: " +i); } |
See also:
This page may need to be