美文网首页
Java--RuntimeException运行时异常--Nul

Java--RuntimeException运行时异常--Nul

作者: 李赫尔南 | 来源:发表于2022-09-10 07:47 被阅读0次

      当程序访问一个空对象的成员变量或方法,或者访问一个空数组的成员时会发生空指针异常(NullPointerException)。怎么处理?
    【示例】NullPointerException异常

    public class Test{
        public static void main(String[] args){
            String str = null;
            System.out.println(str.charAt(0));
        }
    }
    

    输出:Exception in thread "main" java.lang.NullPointerException at Test.main (Test.java: 4)

    解决空指针异常,通常是增加非空判断:

    public class Test{
        public static void main(String[] args){
            String str = null;
            if(str != null) {
                System.out.println(str.charAt(0));
            }
        }
    }
    

    在引用数据类型转换时,有可能发生类型转换异常(ClassCastException)。
    Java--RuntimeException运行时异常--ClassCastException异常

    相关文章

      网友评论

          本文标题:Java--RuntimeException运行时异常--Nul

          本文链接:https://www.haomeiwen.com/subject/pguxortx.html