201521123012 《Java程序设计》第九周学习总结

  1. 本周学习总结

1.1 以你喜欢的方式(思维导图或其他)归纳总结异常相关内容。

  1. 书面作业

1、本次PTA作业题集异常

常用异常
题目5-1
1.1 截图你的提交结果(出现学号)

1.2 自己以前编写的代码中经常出现什么异常、需要捕获吗(为什么)?应如何避免?

错误的类型转换、数组访问越界、访问空指针
(1)错误的类型转换:例如cannot cast from object to int。
(2)数组越界:int[] arr = new int[1]; arr[1] = 1;
改进:检测数组下标是否越界,来避免
*ArrayIndexOutOfBoundsException*
(3)访问空指针:
String str = null; str.length();
改进:应先判断str是否为空或者编程的时候就要保证str指向一个实际存在的对象
  if (str != null) 调用str.length();
不需要*try-catch*,自己修改代码就可以了。

1.3 什么样的异常要求用户一定要使用捕获处理?

Exception其他子类:必须try-catch处理

2、处理异常使你的程序更加健壮

题目5-2
2.1 截图你的提交结果(出现学号)

2.2 实验总结

Integer.parseInt(inputInt);就是将输入的*非整形字符类型数据*转换为*Integer整型数据*。
Integer.parseInt(inputInt)遇到一些不能被转换为整型的字符时,会*抛出异常*。

3、throw与throws

题目5-3
3.1 截图你的提交结果(出现学号)

3.2 阅读Integer.parsetInt源代码,结合3.1说说抛出异常时需要传递给调用者一些什么信息?

Integer.parsetInt源代码:
public static int parseInt(String s) throws NumberFormatException {
        return parseInt(s,10);
    }
public static int parseInt(String s, int radix)
                throws NumberFormatException
    {
        /*
         * WARNING: This method may be invoked early during VM initialization
         * before IntegerCache is initialized. Care must be taken to not use
         * the valueOf method.
         */

        if (s == null) {
            throw new NumberFormatException("null");
        }

        if (radix < Character.MIN_RADIX) {
            throw new NumberFormatException("radix " + radix +
                                            " less than Character.MIN_RADIX");
        }

        if (radix > Character.MAX_RADIX) {
            throw new NumberFormatException("radix " + radix +
                                            " greater than Character.MAX_RADIX");
        }

        int result = 0;
        boolean negative = false;
        int i = 0, len = s.length();
        int limit = -Integer.MAX_VALUE;
        int multmin;
        int digit;

        if (len > 0) {
            char firstChar = s.charAt(0);
            if (firstChar < '0') { // Possible leading "+" or "-"
                if (firstChar == '-') {
                    negative = true;
                    limit = Integer.MIN_VALUE;
                } else if (firstChar != '+')
                    throw NumberFormatException.forInputString(s);

                if (len == 1) // Cannot have lone "+" or "-"
                    throw NumberFormatException.forInputString(s);
                i++;
            }
            multmin = limit / radix;
            while (i < len) {
                // Accumulating negatively avoids surprises near MAX_VALUE
                digit = Character.digit(s.charAt(i++),radix);
                if (digit < 0) {
                    throw NumberFormatException.forInputString(s);
                }
                if (result < multmin) {
                    throw NumberFormatException.forInputString(s);
                }
                result *= radix;
                if (result < limit + digit) {
                    throw NumberFormatException.forInputString(s);
                }
                result -= digit;
            }
        } else {
            throw NumberFormatException.forInputString(s);
        }
        return negative ? result : -result;
    }

首先要知道是那些代码出现异常。
抛出异常时要使用户知道产生异常的原因。

4、函数题

题目4-1(多种异常的捕获)
3.1 截图你的提交结果(出现学号)

3.2 一个try块中如果可能抛出多种异常,捕获时需要注意些什么?

1.如果第一个异常抛出,则后面的代码不会执行。例如
try{
	//1
	//拋出異常的代碼
	//2
}catch(RuntimeException e){
	//3
	//顯示錯誤信息
	//4
}
finally{
	//5
}
//6
2.子类异常必须放在父类异常前面。

5、为如下代码加上异常处理

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));//打印数组内容

5.1 改正代码,让其可正常运行。注1:里面有多个方法均可能抛出异常。

要使用finally关闭资源`。

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);//将文件内容读入数组
			}

		} 
		catch(FileNotFoundException e){System.out.println(e);}
        catch(IOException e){System.out.println(e);}
		finally{
			if(fis!=null){
				try{
					fis.close();				}
				catch(Exception e){System.out.println(e);}
			}
		}
		System.out.println(Arrays.toString(content));//打印数组内容
		}
}

5.2 使用Java7中的try-with-resources来改写上述代码实现自动关闭资源.

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));//打印数组内容
		}
  1. 码云上代码提交记录

题目集:异常

3.1. 码云代码提交记录

在码云的项目中,依次选择“统计-Commits历史-设置时间段”, 然后搜索并截图

posted @ 2017-04-22 19:02  lxr-  Views(123)  Comments(0Edit  收藏  举报