/**
* 异常机制
*/
public class Test01 {
public static void main(String[
args) {
int a = 1/0;
/*
Exception in thread \"main\" java.lang.ArithmeticException: / by zero
at Test01.main(Test01.java:3)
异常 线程\"main\" java.lang包中的ArithmeticException算数异常类 异常描述:by 0
在 类Test01的main() Test01.java文件第3行
main方法会创建一个主线程
Process finished with exit code 1
进程已完成 随着退出代码1 代码0是正常退出 代码1是异常退出
Exception异常类 出现异常时会生成对应异常类的对象/抛出异常 并且中止程序
抛出异常由系统创建
*/
try{
int a = 1/0;
catch (Exception e){
e.printStackTrace();
int a = 0;
System.out.println(a);
/*
java.lang.ArithmeticException: / by zero
at Test01.main(Test01.java:15)
0
Process finished with exit code 0
try尝试{语句块 当出现异常catch抓住异常 (e)用引用变量e指向该异常对象 执行{语句块 语句块内默认调用异常对象e.printStackTrace()打印stack栈trace跟踪信息
如果没有异常发生会正常执行try内的语句 出现异常会生成异常对象交给catch并执行catch内的语句
之后继续往后执行程序
第一个a在try语句块内声明 出了语句块失效 需要重新声明
将错误代码包在try catch中 运行时遇到异常也会继续完成try catch后面的内容 进程正常退出exit code 0
*/
int b=0;
if (b!=0){
System.out.println(1/b);
//通过if判断来规避异常 使程序能继续往下执行
String str = \"1\";
System.out.println(str.charAt(1));
/*
charAt(index)方法的内容如下
public char charAt(int index) {
if ((index < 0) || (index >= value.length)) {
throw new StringIndexOutOfBoundsException(index);
return value[index
;
返回值为char类型 判断索引index<0或者索引超过/等于字符串的数组的长度 throw抛出 new Exception构造器new一个对象
if(false)返回index位的值
Exception in thread \"main\" java.lang.StringIndexOutOfBoundsException: String index out of range: 1
at java.lang.String.charAt(String.java:658)
at Test01.main(Test01.java:42)
异常 在线程\"main\"中 异常对象是StringIndexOfBoundsException类 对应charAt()方法内的throw new xxxx index out of超过 range范围 :1索引传的参数是1 即str.charAt(1)
在 java.lang包String类charAt方法(String.java文件 :658行) 658行对应throw new StringIndexOutOfBoundsException(index);
在 Test01.main方法(Test01.java文件:42行)
*/
Object o =null;
System.out.println(o.toString());
/*
Exception in thread \"main\" java.lang.NullPointerException
at Test01.main(Test01.java:63)
异常对象为 java.lang.NullPointerException类 null空pointer指针 引用变量o为null 找不到o的.toString()方法
*/
class Equipment{
class Computer extends Equipment{
class Television extends Equipment{
class cast{
public static void main(String[
args) {
Equipment c = new Computer();
Television t = (Television)c;
/*
Exception in thread \"main\" java.lang.ClassCastException: Computer cannot be cast to Television
at cast.main(Test01.java:78)
class类cast强制转换exception异常 Computer不能强制转换为Television
*/
if (c instanceof Television){
Television te = (Television) c;
//添加判断 c是否Television的实例
int[
array = new int[5
;
System.out.println(array[5
);
/*
Exception in thread \"main\" java.lang.ArrayIndexOutOfBoundsException: 5
- |马云时代真要成为历史!阿里做出决定:与蚂蚁脱钩
- 阿里巴巴|马云时代真要成为历史!阿里做出决定:与蚂蚁脱钩
- 华为|java异常抛出throws
- javascript|噩耗传来!阿里挺住!
- Java|java自定义异常
- javascript|java try-with-resource自动关闭
- Java|java包装类wrapper class
- 移动互联网|基于Java的接口快速开发框架
- Java|荣耀70和vivo X80对比,哪一款机型更值?
- Java|为何人们买着笔记本智能手表,讨论着电动车,但对手机热情降低了