博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
201521123050 《Java程序设计》第9周学习总结
阅读量:5303 次
发布时间:2019-06-14

本文共 4892 字,大约阅读时间需要 16 分钟。

1. 本周学习总结

1109699-20170422123118837-1502034506.png

2. 书面作业

本次PTA作业题集异常

1.常用异常

题目5-1

1.1 截图你的提交结果(出现学号)

1109699-20170422113425352-1506103551.png

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

以前编写的代码中经常出现数组越界的异常,不需要捕获,在代码中进行修改。

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

在Exception子类中,除去RuntimeException,其他子类都需要捕获处理。

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

题目5-2

2.1 截图你的提交结果(出现学号)

1109699-20170422114208774-1865991133.png

2.2 实验总结

此题主要是要求我们处理输入数组元素时,如果发现是非整型字符串的时候,就要提示有异常即抛出NumberFormatException。捕获后输出异常,然后要将数组填满应加上i--。

3.throw与throws

题目5-3

3.1 截图你的提交结果(出现学号)

1109699-20170422114719837-1524180704.png

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

源代码:

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;    }

抛出异常时,要让用户知道错误发生的原因,如在3-1中当数组越界则抛出ArrayIndexOutOfBoundsException异常告诉用户,使得用户及时修改。

4.函数题

题目4-1(多种异常的捕获)

4.1 截图你的提交结果(出现学号)

1109699-20170422113257946-2025707021.png

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

子类异常必须放在父类异常前面,如父类异常放在前面,则会执行父类异常的捕获而不执行子类异常的捕获。

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:里面有多个方法均可能抛出异常。注2:要使用finally关闭资源。

修改后:

public static void main(String[] args){            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(Exception 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来改写上述代码实现自动关闭资源.

public static void main(String[] args){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(Exception e){            System.out.println(e);}            System.out.println(Arrays.toString(content));//打印数组内容}

6.重点考核:使用异常改进你的购物车系统(未提交,得分不超过6分)

举至少两个例子说明你是如何使用异常处理机制让你的程序变得更健壮。

说明要包含2个部分:1. 问题说明(哪里会碰到异常)。2.解决方案(关键代码)

3. 码云上代码提交记录

1109699-20170422121751712-277359197.png

转载于:https://www.cnblogs.com/xss666/p/6747435.html

你可能感兴趣的文章
DirectX9.0 Direct3D Graphics Pipeline 总结
查看>>
ArrayList源码解析
查看>>
进程同步
查看>>
【转】GitHub问题之恢复本地被删除的文件
查看>>
【python】python内存管理摘要
查看>>
ASP.NET编程中你也应该知道的那些事
查看>>
LeetCode——Construct Binary Tree from Inorder and Postorder Traversal
查看>>
pandas索引.pandas.v0.22
查看>>
树(最小乘积生成树,克鲁斯卡尔算法):BOI timeismoney
查看>>
log日志,crontab
查看>>
rsync同步命令
查看>>
linux下如何更新镜像源(ubuntu 10.04 为例
查看>>
centos7 桥接网卡
查看>>
Linux 下文件监控
查看>>
翻页效果
查看>>
支持xcode6的缓动函数Easing以及使用示例
查看>>
POPSpring动画参数详解
查看>>
封装GCD以及介绍如何使用
查看>>
SpringMVC学习总结(五)——SpringMVC文件上传例子
查看>>
匿名管道
查看>>