异常的练习:
老师用电脑上课。
开始思考上课中出现的问题。
比如问题是
电脑蓝屏。
电脑冒烟。
要对问题进行描述,封装成对象。
可是当冒烟发生后,出现讲课进度无法继续。
出现了讲师的问题:课时计划无法完成。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
class Teacher { private Computer cmp; public void shangKe() throws NoPlanException /*声明异常*/ { cmp=new Computer(); try { cmp.run(); } catch(LanPingException e) /*电脑捕获处理蓝屏的异常*/ { cmp.recst(); } catch(MaoYanException e) /*电脑捕获处理电脑冒烟的异常*/ { throw new NoPlanException("上课无法继续,因为"+e.getMessage()); /*电脑无法处理这个异常,继续把这个异常抛给老师来处理*/ } System.out.println("老师上课"); /*没有异常,老师就正常上课*/ } } class LanPingException extends Exception /*自定义蓝屏异常*/ { LanPingException(String m) { super(m); } } class MaoYanException extends Exception /*自定义电脑冒烟异常*/ { MaoYanException(String m) { super(m); } } class NoPlanException extends Exception /*自定义老师处理异常*/ { NoPlanException(String m) { super(m); } } class Computer { private int state=3; /*不同的异常状态选择*/ public void run()throws LanPingException,MaoYanException { if(state==2) { throw new LanPingException("电脑蓝屏了"); /*符合条件就抛出异常对象*/ } if(state==3) { throw new MaoYanException("电脑冒烟了"); } System.out.println("电脑运行"); } public void recst() { System.out.println("电脑重启"); } } class ExceptionText { public static void main(String args[]) { Teacher t=new Teacher(); try { t.shangKe(); } catch(NoPlanException e) /*老师捕获处理电脑冒烟异常*/ { System.out.println(e.toString()); } } } |
运行结果:
NoPlanException: 上课无法继续,因为电脑冒烟了
以上这篇java异常处理的简单练习就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。