try-catch-finally中,如果catch中return了,finally还会执行吗?

答案解析

finally一定会执行,即使catch中有return,除非JVM终止或System.exit。