//例子1
public class FinallyTest1 {
public static void main(String[] args) {
System.out.println(test3());
}
public static int test3() {
int b = 20;
try {
return b += 80;
} catch (Exception e) {
System.out.println("catch block");
} finally {
b += 50;
}
return 2000;
}
}
//return b==100
我们明明在finally里让b+50了,最后return的b不应该是150吗?为什么会是100呢?不要着急,我用另外的一个例子来说明这是为什么
Map的finally例子//例子2
public class FinallyTest2
{
public static void main(String[] args) {
System.out.println(getMap().get("KEY").toString());
}
public static Map<String, String> getMap() {
Map<String, String> map = new HashMap<String, String>();
map.put("KEY", "INIT");
try {
map.put("KEY", "TRY");
return map;
}
catch (Exception e) {
map.put("KEY", "CATCH");
}
finally {
map.put("KEY", "FINALLY");
map = null;
}
return map;
}
}
//System-->FINALLY
a.jpg (31.26 KB, 下载次数: 43)
b.jpg (45.34 KB, 下载次数: 52)
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |