自学内容网 自学内容网

java——常见报错总结

1. 语法错误 (Syntax Errors)

错误类型: 编译时错误 原因: 代码不符合Java语言的语法规则。

示例 1:
public class Main {
    public static void main(String[] args) {
        System.out.println("Hello, World!");
    // 缺少右大括号
}

错误信息:

error: expected '}' at the end of file

 

解决方案:

确保每个括号成对出现,代码块结束时要有闭合的大括号 }

2. 空指针异常 (NullPointerException)

错误类型: 运行时错误 原因: 访问或操作一个为 null 的对象。

示例 2:
public class Main {
    public static void main(String[] args) {
        String str = null;
        System.out.println(str.length());  // 空指针异常
    }
}

 错误信息:

Exception in thread "main" java.lang.NullPointerException

解决方案:

在操作对象之前,确保对象已经初始化,并且不为 null

 

3. 数组下标越界 (ArrayIndexOutOfBoundsException)

错误类型: 运行时错误 原因: 访问数组中不存在的元素。

示例 3:
public class Main {
    public static void main(String[] args) {
        int[] arr = new int[3];
        arr[5] = 10;  // 数组下标越界
    }
}

 错误信息:

Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: Index 5 out of bounds for length 3

解决方案:

确保访问数组的下标在有效范围内,避免越界。

 

4. 类型转换异常 (ClassCastException)

错误类型: 运行时错误 原因: 不合法的对象类型转换。

示例 4:
public class Main {
    public static void main(String[] args) {
        Object obj = new String("Hello");
        Integer num = (Integer) obj;  // 类型转换异常
    }
}

错误信息:

Exception in thread "main" java.lang.ClassCastException: class java.lang.String cannot be cast to class java.lang.Integer

 

解决方案:

确保进行类型转换时,源对象与目标类型是兼容的。

5. 文件未找到异常 (FileNotFoundException)

错误类型: 运行时错误 原因: 尝试访问一个不存在的文件。

示例 5:
import java.io.*;

public class Main {
    public static void main(String[] args) throws IOException {
        FileReader fr = new FileReader("nonexistent_file.txt");  // 文件未找到
    }
}

错误信息:

Exception in thread "main" java.io.FileNotFoundException: nonexistent_file.txt (No such file or directory)
 

解决方案:

确保文件路径正确,文件存在,或者使用异常处理来避免程序崩溃。

6. 除以零异常 (ArithmeticException)

错误类型: 运行时错误 原因: 除数为零时,抛出除零异常。

示例 6:
public class Main {
    public static void main(String[] args) {
        int result = 10 / 0;  // 除以零异常
    }
}

 错误信息:

Exception in thread "main" java.lang.ArithmeticException: / by zero
 

 

解决方案:

在除法运算前,确保除数不为零。

7. 非法线程操作异常 (IllegalThreadStateException)

错误类型: 运行时错误 原因: 在线程处于非法状态时尝试对其执行不允许的操作。

示例 7:
public class Main {
    public static void main(String[] args) {
        Thread t = new Thread(() -> System.out.println("Hello"));
        t.start();
        t.start();  // 重复启动线程
    }
}

错误信息: 

Exception in thread "main" java.lang.IllegalThreadStateException
 

解决方案:

确保线程没有在已启动的情况下再次启动。

 

8. 方法未定义异常 (NoSuchMethodException)

错误类型: 运行时错误 原因: 尝试调用一个不存在的方法。

示例 8:
public class Main {
    public static void main(String[] args) throws NoSuchMethodException {
        Class<?> clazz = Main.class;
        clazz.getMethod("nonExistentMethod");  // 方法未定义异常
    }
}

错误信息:

Exception in thread "main" java.lang.NoSuchMethodException: Main.nonExistentMethod()
 

解决方案:

确保调用的方法在目标类中已正确定义。

9. 死锁 (Deadlock)

错误类型: 运行时错误 原因: 两个或多个线程互相等待对方释放资源,从而导致程序无法继续执行。

示例 9:
public class Main {
    private static final Object lock1 = new Object();
    private static final Object lock2 = new Object();

    public static void main(String[] args) {
        Thread t1 = new Thread(() -> {
            synchronized (lock1) {
                System.out.println("Thread 1 holding lock 1...");
                try { Thread.sleep(100); } catch (InterruptedException e) {}
                synchronized (lock2) {
                    System.out.println("Thread 1 holding lock 2...");
                }
            }
        });

        Thread t2 = new Thread(() -> {
            synchronized (lock2) {
                System.out.println("Thread 2 holding lock 2...");
                try { Thread.sleep(100); } catch (InterruptedException e) {}
                synchronized (lock1) {
                    System.out.println("Thread 2 holding lock 1...");
                }
            }
        });

        t1.start();
        t2.start();
    }
}

 

错误信息: 程序将不会终止,陷入死锁状态。

解决方案:

避免线程间相互等待,采用合适的锁管理策略,如使用 ReentrantLockLocktryLock 方法。

10. 类未找到异常 (ClassNotFoundException)

错误类型: 运行时错误 原因: Java程序在运行时无法找到需要的类。

示例 10:

 

public class Main {
    public static void main(String[] args) throws ClassNotFoundException {
        Class.forName("com.example.NonExistentClass");  // 类未找到异常
    }
}

错误信息:

Exception in thread "main" java.lang.ClassNotFoundException: com.example.NonExistentClass

解决方案:

确保类路径正确,或使用反射时类存在。

 以上是Java编程中一些常见的错误类型及示例。在开发过程中,遇到这些错误时,可以参考错误信息来进行调试和修复。


原文地址:https://blog.csdn.net/zcl_baoda_lai/article/details/144268507

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!