标签:sys 调用 system 男朋友 运用 内容 util 对象 check
实验六 Java异常
?实验目的
?理解异常的基本概念;
?掌握异常处理方法及熟悉常见异常的捕获方法。
? 实验要求
?练习捕获异常、声明异常、抛出异常的方法、熟悉try和catch子句的使用。
?掌握自定义异常类的方法。
?实验内容
? 编写一个类,在其main()方法中创建一个一维数组,在try字句中访问数组元素,使其产生ArrayIndexOutOfBoundsException异常。在catch子句里捕获此异常对象,并且打印“数组越界”信息,加一个finally子句,打印一条信息以证明这里确实得到了执行。
?自定义异常类的使用
public class Try {
public static void main(String args[]) {
try {
int score[] = {0, 1, 2};
System.out.println("输出第四个数组元素:" + score[3]);
}
catch(ArrayIndexOutOfBoundsException e){
System.out.println("数组越界:"+e);
}
finally {
System.out.println("over");
}
}
}
技术方案:
编写一个Exgeption的子类DangerException,该子类可以创建异常对象,该异常对象调用toShow()方法输出“危险物品”。编写一个Machine类,该类的方法checkBag(Goods goods)当发现参数goods是危险品时(goods的isDanger属性是true)将抛出DangerException异常。
程序在主类的main()方法中的try-catch语句的try部分让Machine类的实例调用checkBag(Goods goods)的方法,如果发现危险品就在try-catch语句的catch部分处理危险品。
import java.util.Scanner;
import java.util.ArrayList;
public class Danger {
public static void main(String[] args) {
ArrayList<String> list=new ArrayList<String>();
list.add("化妆品");
list.add("刀子");
list.add("男朋友");
list.add("美女");
System.out.println("请输入需要检查的物品:");
Scanner n=new Scanner(System.in);
String s=n.next();
Goods goods=new Goods(s);
Mechine mechine=new Mechine();
try {
mechine.checkBag(goods);
} catch (DangerException e) {
if(list.contains(s)) {
e.toShow();
System.out.println(goods.getName() + ":危险");
}
else{
System.out.println(goods.getName() + ":安全");
}
}
}
}
public class Goods {
private String name;
boolean isDanger=true;
public Goods(String name) {
this.name=name;
}
public Goods() {
}
public String getName() {
return name;
}
}
public class Mechine {
public void checkBag(Goods goods)throws DangerException{
if(goods.isDanger){
DangerException danger=new DangerException();
throw danger;
}
else{
System.out.println(goods.getName()+ "安全");
}
}
}
class DangerException extends Exception {
public void toShow() {
System.out.println("危险物品");
}
}
学习总结:
1.这周学习了异常的基本运用,学习了try-catch方法的运用。
2.这周学习了throw与throws,但是对于二者运用区别还不是太清楚。
3.这周学习了对于编写识别危险品操作的简单代码,我对其有一定的兴趣,这也算是得到的最大的一个点。
4.这周学习了runnable的共享以及同步。
标签:sys 调用 system 男朋友 运用 内容 util 对象 check
原文地址:https://www.cnblogs.com/arthur-w/p/11701349.html