Car car = null;
System.out.println(null==null); // true
System.out.println(car==null); // true
System.out.println(car.equals(null)); // NullpointerException.
System.out.println(null==null); // true
System.out.println(car==null); // true
System.out.println(car.equals(null)); // NullpointerException.
Комментариев нет:
Отправить комментарий