What if I have nested loops, and I want to break out of all of them at once?
while (true) { // ... while (shouldCont) { // ... while (sho
Goto is only hideous when abused. To drop out of the innermost loop of some nesting it's acceptable. BUT... one has to ask why there is so much nesting there in the first place.
Short answer: No.