异常:finally

异常: finally

package com.sgg.yichang;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
/*
 * try-catch-finally中finally的使用
 * try-catch-finally结构是可以嵌套
 * 
 * 1.finally是可选的
 * 
 * 2.finally中声明的是一定会被执行的代码,即使catch中又出现异常了,
 * try中有return语句,catch中有return语句等情况。
 * 
 * 3.向数据库连接、输入输出流、网络编程Socket等资源,JVM是不能自动化
 * 的回收的,我们需要手动的进行资源的释放。此时的资源释放,
 * 就需要声明在finally中。
 * 
 * 体会1: 使用try-catch-finally处理编译时异常,使得程序在编译时就不再报错,但是运行时仍可能报错。
 * 		  相当于我们使用try-catch-finally将一个编译时可能出现的异常,延迟到运行时出现。
 * 
 * 体会2:开发中,由于运行时异常比较常见,所以我们通常就不针对运行时异常编写try-catch-finally了。
 * 		  针对于编译时异常,我们说一定要考虑异常的处理。
 */

import org.junit.Test;

public class FinallyTest {
	
	@Test
	public void test2() {
		FileInputStream fis = null;
		
		try {
			File file = new File("hello.txt");
			fis = new FileInputStream(file);
			
			int data = fis.read();
			while(data != -1) {
				System.out.println((char)data);
				data = fis.read();
			}
		} catch (FileNotFoundException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}finally {
			try {
				if(fis != null)
					fis.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
	}
	
	@Test
	public void testMethod() {
		int num = method();
		System.out.println(num);//3
	}
	public int method() {
		try {
			int[] arr = new int[10];
			System.out.println(arr[10]);
			return 1;
		} catch (Exception e) {
			e.printStackTrace();
			return 2;
		} finally {
			System.out.println("我一定会被执行");
			return 3;
		}
	}
	
	@Test
	public void test1() {
		
		try {
			int a = 10;
			int b = 0;
			System.out.println( a / b );
		} catch (ArithmeticException e) {
//			e.printStackTrace();
			
			int[] arr = new int[10];
			System.out.println(arr[10]);
			
		}catch (Exception e) {
			e.printStackTrace();
		}
//		System.out.println("我好帅呀!!!~~~");
		finally {
			System.out.println("我好帅");
		}
		
	}
	
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值