Java中异常处理的特殊情况

/**
 * 1 不能再finally块中执行return,continue等语句,否则会把异常“吃掉”; 
 * 2 在try,catch中如果有return语句,则在执行return之前先执行fianlly块
 * 
 * @author Terry
 * 
 */
public class TryTest {
	public static void main(String[] args) {
		try {
			System.out.println(TryTest.test());// 返回结果为true,没有任何异常抛出
		} catch (Exception e) {
			// TODO Auto-generated catch block
			System.out.println("Exception from main");
			e.printStackTrace();
		}
		doThings(0);
	}

	public static boolean test() throws Exception {
		try {
			throw new Exception("Something error");// 1.抛出异常
		} catch (Exception e) {// 2.捕获的异常匹配(声明类或其父类),进入控制块
			// TODO: handle exception
			System.out.println("Exception from e");// 3.打印
			return false;// 5.return前控制转移到finally块,执行完后再返回(这一步被吃掉了,不执行)
		} finally {
			return true;// 4.控制转移,直接返回,吃掉了异常
		}
	}

	public static void doThings(int i) {
		try {
			if (i == 0) {
				// 在执行return之前会先执行finally
				return;
			}
			int t = 100 / i;
			System.out.println(t);
		} catch (Exception e) {
			// TODO: handle exception
			e.printStackTrace();
		} finally {
			System.out.println("finally");
		}
	}
}
 

你可能感兴趣的:(java)