| Author |
about nested try catch
|
Chang Tzu-yu
Greenhorn
Joined: Sep 17, 2007
Posts: 16
|
|
Hello, I don't understand about nested try catch When has error, It didn't continue Loop, It run finally!!! I don't know why it run like this??? Please tell me, thanks!!!
|
Chang Tzu-yu<br /> <br />SCJP 1.4
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12950
|
|
The code you posted is not real Java code, so that makes it a little bit harder. If you want to use "continue", then you must do that inside the code block of the loop you are programming. You can't put "continue" somewhere else outside the block - that will not compile. Try putting the try-catch block inside the block of the loop:
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
Chang Tzu-yu
Greenhorn
Joined: Sep 17, 2007
Posts: 16
|
|
Hi Jesper, Thanks for your reply I'll try it... Thanks
|
 |
 |
|
|
subject: about nested try catch
|
|
|