Java syntax: Difference between revisions

Content deleted Content added
Reference types: "soon" is ambiguous and probably wrong in general, the scheduling of the garbage collector is not accessible to Java programs
Line 608:
int ch;
while (ch = getChar()) {
if (ch == ' ') {
continue; // Skips the rest of the while-loop
}
 
// Rest of the while-loop, will not be reached if ch == ' '