From Wikibooks, open books for an open world
break
is a Java keyword.
Jumps (breaks) out from a loop. Also used at switch
statement.
For example:
|
for ( int i=0; i < maxLoopIter; i++ ) {
System.out.println("Iter=" +i);
if ( i == 5 ) {
break; // -- 5 iteration is enough --
}
}
|
See also: