I have a construct where I have a for loop nested inside of a while loop in java. Is there a way to call a break statement such that it exits both the for loop and the while loop?
feedback
|
|
You can use a 'labeled' break for this.
} Taken from: http://download.oracle.com/javase/tutorial/java/nutsandbolts/branch.html | |||
|
feedback
|
|
You can do it in 3 ways:
This is example for 3rd way (with label):
example from this site In my opinion 1st and 2nd solution is elegant. Some programmers don't like labels. | ||||
|
feedback
|
|
For example:
| |||
|
feedback
|
|
You should able to use a label for the outer loop (while in this case) So something like label: While() { for() { break label; } } | |||
|
feedback
|