-
java异常处理
3.8 异常处理
什么是异常
知道Java异常分类
处理异常的两种方式
throw和throws区别
如何创建自定义异常
概念:
在程序中,可能产生程序员没有预料到的各种错误情况,比如打开一个不存在的文件等,在Java中,这种在程序运行时可能出现的错误称为异常。
异常可以把“描述在正常执行过程中做什么事”的代码和“出了问题怎么办”的代码相分离
例子:demo05.ExceptionDemo.java
Java异常分类A:
java.lang.Error,java.lang.Exception
Error(错误):jvm系统内部错误、资源耗尽等严重问题,发生Error时,编程人员无能 为力,只能终止程序,例如内存溢出等。
Exception(异常):因编程错误或偶然的外在因素导致的一般性问题,例如:对负数 开平方根、空指针访问等,当发生Exception 时,编程人员可以做出处理,并做出人性 化响应,比如弹出窗口,显示“请不要输入负数!”。
异常分类B:
检查性异常:编译器必须处理的异常,该类异常通常是Exception类型或其子类(RuntimeException类除外)//运行时异常
SQLException、IOException、ClassNotFoundException
例子:/DemoProject/src/com/hyg/demo08/FileInputStreamDemo.java
非检查性异常:编译器不要求强制处理的异常,RuntimeException类及其所有子类都是非检查性异常。
NullPointerException、ClassCastException
例子:equa
- 2022-02-14 14:02:16下载
- 积分:1
-
MFC Insider (source book distribution) CHAP04.rar
MFC技术内幕(配书源码)CHAP04.rar-MFC Insider (source book distribution) CHAP04.rar
- 2022-02-06 18:46:21下载
- 积分:1
-
浙江大学程序设计大赛源代码ACM2481题
浙江大学程序设计大赛源代码ACM2481题-Zhejiang University Design Competition source code that ACM2481
- 2023-01-20 03:30:04下载
- 积分:1
-
24算法的com组件
24算法的com组件-24 components algorithm com
- 2023-05-01 13:05:03下载
- 积分:1
-
一个C++类,可以添加
一个可以对任意长整数进行加减的类 在Visual C++6.0 WinXp下编译通过采用类来实现,从CString继承而来数据运算的结果保存在CString类中理论上可对任意长的数据进行相加在Release目录下有可执行文件,将*.txt拖放到longadd.exe上即可,*.txt为数据文件。-A C++ class which can do the Add-Substract operation to integer with arbitrary length.Compiled with VC++ 6.0 under Windows XP.The class inherited from CString and theoretically it can do add-substract to any length integer.There is a executive file under Release directory,drag the*.txt data file on to the longadd.exe,then it s ok!
- 2022-01-22 15:22:53下载
- 积分:1
-
A full
功能齐全,方便使用,希望能非常有用尽量不要让站长把时间都花费在为您修正-A full-featured, easy to use, hoping to be very useful as far as possible not to allow owners to spend time for you to amend
- 2022-12-22 03:30:03下载
- 积分:1
-
一个扑克牌游戏梭哈程序程序简单易懂相信不用我介绍大家应该可以很容易理解...
一个扑克牌游戏梭哈程序程序简单易懂相信不用我介绍大家应该可以很容易理解-a card game Xunhe Procedure easily understood and I do not believe I should introduce you can easily understand
- 2022-06-29 16:49:20下载
- 积分:1
-
收集到的orion_ep93xx_wince_bsp_1
收集到的orion_ep93xx_wince_bsp_1-3-507显示驱动源码,未作测试-Collected orion_ep93xx_wince_bsp_1-3-507 display driver source code, not for testing
- 2022-02-03 23:17:42下载
- 积分:1
-
用MFC做的一个拼图游戏的小程序。用于联系鼠标选取移动等长用功能。...
用MFC做的一个拼图游戏的小程序。用于联系鼠标选取移动等长用功能。-Using MFC to do a small procedures.
- 2023-03-25 07:35:06下载
- 积分:1
-
LazyList-master
Android Lazy LIST sAMPLE cODE
- 2013-07-13 03:23:17下载
- 积分:1