//equals(Object anObject)
//将此字符串与指定对象进行比较.
//其结果是true当且仅当该参数不是null并且是String对象,表示相同的字符序列作为该对象
public class Test{
public static void main(String[] args){
//test1();
test2();
}
public static void test1(){
String str = null;
if (str.equals("abc")){//java.lang.NullPointerException
System.out.print("内容一致");
}
System.out.print("内容不一致");
}
public static void test2(){
String str = null;
if ("abc".equals(str)){//为了避免java.lang.NullPointerException应写为:【"abc".equals(str)】
System.out.print("内容一致");
}
System.out.print("内容不一致");
}
}
//将此字符串与指定对象进行比较.
//其结果是true当且仅当该参数不是null并且是String对象,表示相同的字符序列作为该对象
public class Test{
public static void main(String[] args){
//test1();
test2();
}
public static void test1(){
String str = null;
if (str.equals("abc")){//java.lang.NullPointerException
System.out.print("内容一致");
}
System.out.print("内容不一致");
}
public static void test2(){
String str = null;
if ("abc".equals(str)){//为了避免java.lang.NullPointerException应写为:【"abc".equals(str)】
System.out.print("内容一致");
}
System.out.print("内容不一致");
}
}