javaCompiling
编译前 try { return 1; } catch(Exception e) { return 2; } finally { return 3; } ------ 编译后 try { boolean e = true; return 3; } catch (Exception var6) { boolean var2 = true; return 3; } finally { ; }
Last updated
编译前
try {
return 1;
} catch(Exception e) {
return 2;
} finally {
return 3;
}
------
编译后
try {
boolean e = true;
return 3;
} catch (Exception var6) {
boolean var2 = true;
return 3;
} finally {
;
}Last updated