Java syntax: Difference between revisions

Content deleted Content added
The code in referance is below, not above as stated
Line 602:
 
====<code>continue</code> statement====
The <code>continue</code> statement discontinues the current iteration of the current control statement and begins the next iteration. The following <code>while</code> loop in the code abovebelow reads characters by calling <code>getChar()</code>, skipping the statements in the body of the loop if the characters are spaces:
 
<source lang=Java5>