第八周课程总结&实验报告(六)
实验报告六
实验内容
编写一个类,在其main()方法中创建一个一维数组,在try字句中访问数组元素,使其产生ArrayIndexOutOfBoundsException异常。在catch子句里捕获此异常对象,并且打印“数组越界”信息,加一个finally子句,打印一条信息以证明这里确实得到了执行。
自定义异常类的使用
车站检查危险品的设备,如果发现危险品会发出警告。编程模拟设备发现危险品。
技术方案:
编写一个Exgeption的子类DangerException,该子类可以创建异常对象,该异常对象调用toShow()方法输出“危险物品”。编写一个Machine类,该类的方法checkBag(Goods goods)当发现参数goods是危险品时(goods的isDanger属性是true)将抛出DangerException异常。
程序在主类的main()方法中的try-catch语句的try部分让Machine类的实例调用checkBag(Goods goods)的方法,如果发现危险品就在try-catch语句的catch部分处理危险品。
一、异常
(一)实验源码
package test;
import java.util.*;
public class Yichang {
public static void main(String[] args) {
int score[]=new int [6];
System.out.println("程序开始");
System.out.println("请输入下标");
@SuppressWarnings("resource")
Scanner out = new Scanner(System.in);
int n = out.nextInt();
try{
for(int i=0;i<10;i++){
score[i]=i*i;
}
System.out.println("score["+n+"]="+score[n]+" ");
}catch(ArrayIndexOutOfBoundsException a){
System.out.println("数组越界:"+a);
}finally{
System.out.println("程序结束");
}
}
}
(二)实验结果
二、危险品检查
(一)实验源码
package danger;
@SuppressWarnings("serial")
public class DangerException extends Exception{
String imformation;
DangerException(String imformation){
this.imformation=imformation;
}
void toShow(){
System.out.println(imformation);
}
}
package danger;
public class Machine{
String name;
Goods g;
public boolean isDanger(String name) {
String score[] = {"炸弹","毒药","刀具","枪支","邓林"};
boolean flag =false;
for(int i=0;i<score.length;i++) {
if(name.equals(score[i])) {
flag = true;
break;
}
}
return flag;
}
void checkBag(Goods g){
this.g=g;
name=g.getName();
try{
if(isDanger(name)){
System.out.print(name);
throw new DangerException("是危险品!!!"+"\n");
}
else{
System.out.print(name);
throw new DangerException("不是危险品!"+"\n");
}
}catch(DangerException e){
e.toShow();
}
}
}
package danger;
public class Goods{
String name;
public void setName(String name){
this.name=name;
}
public String getName(){
return name;
}
}
测试
package danger;
import java.util.Scanner;
public class Test {
public static void main(String[] args) {
while(true) {
@SuppressWarnings("resource")
Scanner sc=new Scanner(System.in);
System.out.println("请输入物品:");
String input=sc.nextLine();
Goods g=new Goods();
g.setName(input);
Machine m=new Machine();
m.checkBag(g);
}
}
}
(二)实验结果
学习总结
1.异常
try{
//可能出现异常的语句
}[catch{
//编写异常的处理语句
}catch{
//编写异常的处理语句
}.......]
finally{
//一定会运行到的程序代码;
}
2.throws关键字
在定义一个方法时可以使用throws关键字声明,使用throws声明的方法表示此方法
不处理异常,而交给方法的调用者进行处理。
3.多线程
class 类名称 extends Ttread{
属性....;
方法....;
public void run(){
线程主体;
}
}