标签:catch 返回值 程序 out style stat .com 学习 div
public class test { public static void main(String[] args) { System.out.println("return value of getValue(): " + getValue()); } public static int getValue() { int i = 2; try { System.out.println(i); return i; } finally { i++; System.out.println(i); } } }
又学习了一波
标签:catch 返回值 程序 out style stat .com 学习 div
原文地址:http://www.cnblogs.com/forever1994/p/6691349.html