java开发中常见的异常

常见的运行时异常

NullPointerException(空指针异常)

int[] arr = null;
system.out.println(arr[1]);

ArrayIndexOutOfBoundsException(数组下标越界)

int[] arr = int[10];
system.out.println(arr[10]);

StringIndexOutOfBoundsException(字符串下标越界)

String str = "abc";
system.out.println(str[3]);

ClassCastException(类型转换异常)

Object obj = new Date();
String str = (String)obj;

NumberFormatException(数字格式异常)

String str = "abc";
int i = Integer.parseInt(str);

InputMismatchException(输入不匹配异常)

Scanner scanner = new Scanner(System.in);
int i = scanner.nextInt();
//控制台输入非数字报错

ArithmeticException(算数异常)

int x = 5/0;

常见的编译时异常

public class Test {
    public static void main(String[] args) {
        File file = new File("hello.txt");
		FileInputStream fis = new FileInputStream(file);//FileNotFoundException(未找到文件异常)
		int data = fis.read();//IOException(输入输出异常)
		while(data != -1){
			System.out.print((char)data);
			data = fis.read();
		}
		fis.close();
    }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值