The following code:
boolean continue = false;
Returns the following error:
error: not a statement
boolean continue = false;
You can't use continue as a name of a variable. It's one of java reserved words.
You cannot use continue as a variable name because it is a reserved word.
From the docs:
The
continuestatement skips the current iteration of afor,while, ordo-whileloop. The unlabeled form skips to the end of the innermost loop's body and evaluates the boolean expression that controls the loop.
You can tell that it is a keyword because, when you look at your question, continue has syntax highlighting applied, like boolean and false.
boolean continue = false;
That would be like writing
boolean boolean = false;
or
boolean false = false;
Both of those obviously won't work, so try something else like continuing:
boolean continuing = false;
Try this instead:
boolean cont = false;
Or use another name. The point is that in Java, continue is a keyword and it can't be used as a variable name - it's right here in the language specification. For future reference this is what continue is used for:
The
continuestatement skips the current iteration of afor,while, ordo-whileloop. The unlabeled form skips to the end of the innermost loop's body and evaluates the boolean expression that controls the loop.