欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

十个常见的Java异常出现原因

程序员文章站 2023-04-06 12:50:27
异常是 Java 程序中经常遇到的问题,我想每一个 Java 程序员都讨厌异常,一 个异常就是一个 BUG,就要花很多时间来定位异常问题。 1、NullPointerException 空指针异常,操作一个 null 对象的方法或属性时会抛出这个异常。具体看上篇文章:空指针常见案例。 2、Outof ......

异常是 java 程序中经常遇到的问题,我想每一个 java 程序员都讨厌异常,一 个异常就是一个 bug,就要花很多时间来定位异常问题。


 

1、nullpointerexception

空指针异常,操作一个 null 对象的方法或属性时会抛出这个异常。具体看上篇文章:空指针常见案例

2、outofoutofmemoryerror

内存出现异常的一种异常,这不是程序能控制的,是指要分配的对象的内存超出了当前最大的堆内存,需要调整堆内存大小(-xmx)以及优化程序。

3、ioexception

io,即:input, output,我们在读写磁盘文件、网络内容的时候经常会生的一种异常,这种异常是受检查异常,需要进行手工捕获。

如文件读写会抛出 ioexception:

 

1 public int read() throws ioexception
2 public void write(int b) throws ioexception

4、filenotfoundexception

文件找不到异常,如果文件不存在就会抛出这种异常。

如定义输入输出文件流,文件不存在会报错:

1 public fileinputstream(file file) throws filenotfoundexception
2 public fileoutputstream(file file) throws filenotfoundexception

filenotfoundexception 其实是 ioexception 的子类,同样是受检查异常,需要进行手工捕获。

5、classnotfoundexception

类找不到异常,java开发中经常遇到,是不是很绝望?这是在加载类的时候抛出来的,即在类路径下不能加载指定的类。

看一个示例:

1 public static <t> class<t> getexistingclass(classloader classloader, string classname) {
2   try {
3      return (class<t>) class.forname(classname, true, classloader);
4   }
5   catch (classnotfoundexception e) {
6      return null;
7   }
8 }

它是受检查异常,需要进行手工捕获。

6、classcastexception

类转换异常,将一个不是该类的实例转换成这个类就会抛出这个异常。

如将一个数字强制转换成字符串就会报这个异常:

1 object x = new integer(0);
2 system.out.println((string)x);

这是运行时异常,不需要手工捕获。

7、nosuchmethodexception

没有这个方法异常,一般发生在反射调用方法的时候,如:

1 public method getmethod(string name, class<?>... parametertypes) throws nosuchmethodexception, securityexception {
2     checkmemberaccess(member.public, reflection.getcallerclass(), true);
3     method method = getmethod0(name, parametertypes, true);
4     if (method == null) {
5         throw new nosuchmethodexception(getname() + "." + name + argumenttypestostring(parametertypes));
6     }
7     return method;
8 }

它是受检查异常,需要进行手工捕获。

8、indexoutofboundsexception

索引越界异常,当操作一个字符串或者数组的时候经常遇到的异常。

例:一个arraylist数组中没有元素,而你想获取第一个元素,运行是就会报此类型的错误。

public class test{
     public static void main(args[] ){
         list<string> list = new arraylist<>();
         system.out.println(list.get(0));
   }
}                  

它是运行时异常,不需要手工捕获。

9、arithmeticexception

算术异常,发生在数字的算术运算时的异常,如一个数字除以 0 就会报这个错。

1 double n = 3 / 0;

这个异常虽然是运行时异常,可以手工捕获抛出自定义的异常,如:

1 public static timestamp from(instant instant) {
2     try {
3         timestamp stamp = new timestamp(instant.getepochsecond() * millis_per_second);
4         stamp.nanos = instant.getnano();
5         return stamp;
6     } catch (arithmeticexception ex) {
7         throw new illegalargumentexception(ex);
8     }
9 }

10、sqlexception

sql异常,发生在操作数据库时的异常。

如下面的获取连接:

1 public connection getconnection() throws sqlexception {
2     if (getuser() == null) {
3         return drivermanager.getconnection(url);
4     } else {
5         return drivermanager.getconnection(url, getuser(), getpassword());
6     }
7 }

又或者是获取下一条记录的时候:

1 boolean next() throws sqlexception;

它是受检查异常,需要进行手工捕获。

这里只列举了 10 个 java 中最常见的基本异常

 

 

上一篇: CSS之换行

下一篇: php随机生成汉字