throws处理方式
- " throws+异常类型 "写在方法的声明处,指明此方法执行时,可能会抛出的异常类型,一旦当方法体执行时,出现异常,仍会在异常代码处生成一个异常类的对象,此对象满足throws后异常类型时,就会被抛出,异常代码后续的代码就不再执行
- 体会:try-catch-finally:真正的把异常处理掉了,throws:只是将异常抛给了方法的调用者,并没有真正将异常处理掉
public static void method1() throws FileNotFoundException, IOException {
File file=new File("hello.txt");
FileInputStream fis=new FileInputStream(file);
int data=fis.read();
while (data!=-1){
System.out.println((char)data);
data=fis.read();
}
fis.close();
}
public static void method2() throws IOException {
method1();
}