Java Tutorial/Class Definition/null

Материал из Java эксперт
Перейти к: навигация, поиск

The null Keyword

You can test if a reference variable is null by using the == operator. For instance.



public class MainClass {
  public static void main(String[] args) {
    String book = null;
    
    if (book == null) {
        book = new String();
    }
  }
}