posted 23 years ago
Ragu is rigth regarding point 4)
Another point:
try{ /*break or continue or return or throw*/ }
finally{ /*break or continue or return or throw*/ }
This case means the instruction that was going to leave out the try clause is not executed. It would be executed only if finally returns. Note that is possible to lost an important exception thrown in try.
Another similar:
try { /*break or continue or return or throw*/ }
catch{ /*break or continue or return or throw*/ }
finally{ /*break or continue or return or throw*/ }
SCJP2. Please Indent your code using UBB Code