-
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
-
apache log4cxx的使用演示,可以看看输出LOG到底有多方便。
apache log4cxx的使用演示,可以看看输出LOG到底有多方便。-apache log4cxx the use of demonstration, in the end can take a look at how easy LOG output.
- 2022-02-02 15:47:39下载
- 积分:1
-
安装系统和# 39;的源代码(包括样品)酷!(相似…
nullsoft 安装系统的源代码(包含samples) cool!。(类似InstallShield的一个开源、Scriptable的安装系统)-installation of the system"s source code (including samples) cool! . (Similar to the one open source InstallShield, the installation of the system NSIS)
- 2022-03-12 15:08:58下载
- 积分:1
-
根据网站的URL地址进行数据采集,主要是针对股票数据
根据网站的URL地址进行数据采集,主要是针对股票数据-According to the website URL address data collection, mainly for stock data
- 2022-09-13 13:05:03下载
- 积分:1
-
Based on evc++ Under the control of stepper motor windows embedded visual c
一个基于evc++下的步进电机的控制
windows embedded visual c-Based on evc++ Under the control of stepper motor windows embedded visual c
- 2022-07-18 04:39:42下载
- 积分:1
-
在 iOS 中为 TWebBrowser 加入 Javascript 处理能力
在 iOS 中为 TWebBrowser 加入 Javascript 处理能力
在前段时间在恩巴克德罗论坛上的帖子,查尔斯 Vinal 询问它是否可能要实施的 stringByEvaluatingJavaScriptFromString 方法是在 UIWebView,从它的祖先,UIView 继承中可用的 TWebBrowser。
短的答案是肯定的然而它需要一些修改现有源。你需要复印的 FMX。浏览器和 FMX。WebBrowser.iOS,并把它们放在编译器搜索路径中。接下来,让下面的变化 ─ ─ 在 FMX。Web 浏览器, 中添加以下内容到 ICustomBrowser
- 2022-07-17 16:03:27下载
- 积分:1
-
beautiful pair of C source code c learning program design has been very helpful
漂亮的C源代码
对学习c程序设计非常有帮助-beautiful pair of C source code c learning program design has been very helpful
- 2022-08-16 00:25:06下载
- 积分:1
-
The first time, the Provisional contains some source code. There is nothing that...
第一次来,临时载点儿源码。没有什么说明,就为自己能下一点儿源码而来。
如果真有所收获,我以后就常来这儿,就我自己的源码整理后在上传。-The first time, the Provisional contains some source code. There is nothing that they can for the next bit from the source. If the gain, I ll come here often on my own after finishing uploading source.
- 2022-11-10 15:10:03下载
- 积分:1
-
我自己做的银行管理系统 代码很简单的 很好看懂的啊 !!! 开户 存款 取款 转帐 查询 修改密码 注销...
我自己做的银行管理系统 代码很简单的 很好看懂的啊 !!! 开户 存款 取款 转帐 查询 修改密码 注销-my own bank management system code is very simple to understand the good ah! ! ! Account deposits withdrawals transfer inquiry alter the code written off
- 2022-04-12 04:26:28下载
- 积分:1
-
c# 调用vlc播放rtmp流
运行时需要将vlc的plugins文件夹放在与exe同一级目录,由于这个插件太大就不上传了,自己可以下载到
- 2022-01-24 14:52:12下载
- 积分:1