首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
try_catch_return
】的更多相关文章
try_catch_return
1.情况一(try中有return,finally中没有return): public class TryTest{ public static void main(String[] args){ System.out.println(test()); } private static int test(){ int num = 10; try{ System.out.println("try"); return num += 80; }catch(Exception e){ Syst…