避免Java中空指针异常
在java中,当试图访问空引用对象的属性或调用空引用对象的方法时,会抛出nullpointerexception异常。
解决方案
为了避免这种情况,可以在使用对象之前检查它是否为NULL。可以使用null检查或条件语句来实现。
立即学习“Java免费学习笔记(深入)”;
null检查
if (str != null) {
System.out.println(str.Length());
}
条件语句
String str = null;int length = str != null ? str.length() : 0;