6-1 jmu-Java-06异常-finally (8分)
代码中向系统申请资源,到最后都要将资源释放。
现有一Resource类代表资源类,包含方法:
open(String str)打开资源,声明为抛出Exception(包含出错信息)。
close()方法释放资源,声明为抛出RuntimeException(包含出错信息)
现在根据open(String str)中str的不同,打印不同的信息。str的内容分为4种情况:
fail fail,代表open和close均会出现异常。打印open的出错信息与close的出错信息。
fail success,代表open抛出异常,打印open出错信息。close正常执行,打印resource release success
success fail,代表open正常执行,打印resource open success。close抛出异常,打印close出错信息。
success success,代表open正常执行,打印resource open success,close正常执行打印resource release success。
注1:你不用编写打印出错信息的代码。
注2:捕获异常后使用System.out.println(e)输出异常信息,e是所产生的异常。
裁判测试程序:
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
Resource resource = null;
try{
resource = new Resource();
resource.open(sc.nextLine());
/*这里放置你的答案*/
sc.close();
}
源代码
System.out.println("resource open success");
}
catch(Exception e)
{
System.out.println(e);
}
try
{
resource.close();
System.out.println("resource release success");
}
catch(RuntimeException e)
{
System.out.println(e);
}
6-2 jmu-Java-06异常-多种类型异常的捕获 (3分)
如果try块中的代码有可能抛出多种异常,且这些异常之间可能存在继承关系,那么在捕获异常的时候需要注意捕获顺序。
补全下列代码,使得程序正常运行。
裁判测试程序:
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while (sc.hasNext()) {
String choice = sc.next();
try {
if (choice.equals("number"))
throw new NumberFormatException();
else if (choice.equals("illegal")) {
throw new IllegalArgumentException();
} else if (choice.equals("except")) {
throw new Exception();
} else
break;
}
/*这里放置你的答案*/
}//end while
sc.close();
}
输出说明
在catch块中要输出两行信息:
第1行:要输出自定义信息。如下面输出样例的number format exception
第2行:使用System.out.println(e)输出异常信息,e是所产生的异常。
输入样例
number illegal except quit
输出样例
number format exception
java.lang.NumberFormatException
illegal argument exception
java.lang.IllegalArgumentException
other exception
java.lang.Exception
源代码1
catch(Exception e)
{
if(