If I have a try ... catch block inside a while loop, and there#s a break inside the catch, does program execution leave t
try ... catch
while
break
catch
Yes, it'll break the loop.
But why not do:
finished = true;
instead?