Java Tutorial/Class Definition/null — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 05:00, 1 июня 2010
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();
}
}
}