题目5-1
以前学C语音的时候就经常会出现数组越界,但是不需要捕获,想要避免的话就是在建数组的时候自己要再仔细一点。
Exception其他子类的异常就要求用户要用try-catch捕获处理。
题目5-2
实验总结:这个实验还算比较简单的,而且是老师一步一步带着做的,比较轻松。
throw
与throws
Integer.parsetInt
源代码,结合3.1说说抛出异常时需要传递给调用者一些什么信息?抛出异常时,应该传递给调用者错误原因。比如3.1中,arr数组越界则抛出ArrayIndexOutOfBoundsException异常,当发生空指针,产生NullPointerException异常。
题目4-1(多种异常的捕获)
捕获是要可以在try中直接放入多个catch,但是要注意,子类异常必须放在父类异常前面。
byte[] content = null;
FileInputStream fis = new FileInputStream("testfis.txt");
int bytesAvailabe = fis.available();//获得该文件可用的字节数
if(bytesAvailabe>0){
content = new byte[bytesAvailabe];//创建可容纳文件大小的数组
fis.read(content);//将文件内容读入数组
}
System.out.println(Arrays.toString(content));//打印数组内容
public static void main(String[] args) throws IOException {
byte[] content = null;
FileInputStream fis = null;
try {
fis = new FileInputStream("testfis.txt");
int bytesAvailabe = fis.available();//获得该文件可用的字节数
if(bytesAvailabe>0){
content = new byte[bytesAvailabe];//创建可容纳文件大小的数组
fis.read(content);//将文件内容读入数组
}
System.out.println(Arrays.toString(content));//打印数组内容
} catch (IOException e) {
e.printStackTrace();
}
finally{
try {
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
try-with-resources
来改写上述代码实现自动关闭资源? public static void main(String[] args) throws IOException {
byte[] content = null;
try(FileInputStream fis= new FileInputStream("testfis.txt"))
{
int bytesAvailabe = fis.available();//获得该文件可用的字节数
if(bytesAvailabe>0){
content = new byte[bytesAvailabe];//创建可容纳文件大小的数组
fis.read(content);//将文件内容读入数组
}
}
catch(FileNotFoundException e){System.out.println(e);}
catch(IOException e){System.out.println(e);}
System.out.println(Arrays.toString(content));//打印数组内容
}
举至少两个例子说明你是如何使用异常机制让你的程序变得更健壮。
说明要包含2个部分:1. 问题说明(哪里会碰到异常)。2.解决方案(关键代码)
题目集:异常
在码云的项目中,依次选择“统计-Commits历史-设置时间段”, 然后搜索并截图
Best Practices for Exception Handling
Exception-Handling Antipatterns Blog
The exceptions debate
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系我们删除。