finally
break
continue
虽然有时是有意为之,但这样的语句非常混乱,可能会掩盖抛出的异常,导致调试复杂化。
示例:
while (true) { try { throwingMethod(); } finally { continue; } }