Страницы

Поиск по вопросам

четверг, 19 декабря 2019 г.

Значение null в java

#null #java #jframe


Скажите, что такое null в java? Пример:
// это только фрагмент
public main() {
    JFrame f = new JFrame();
    f.setLocationRelativeTo(null);
    // и так далее 
}
    


Ответы

Ответ 1



null - читается нал означает отсутствующее значение или ссылку null может быть сконвертирован (кастирован) в любой тип/класс/объект нельзя создать/декларировать тип с типом null

Ответ 2



Это значит отсутствие значения (не 0, а именно отсутствие).

Ответ 3



Первая ссылка в гугле по запросу "null в java". There is also a special null type, the type of the expression null, which has no name. Because the null type has no name, it is impossible to declare a variable of the null type or to cast to the null type. The null reference is the only possible value of an expression of null type. The null reference can always be cast to any reference type. In practice, the programmer can ignore the null type and just pretend that null is merely a special literal that can be of any reference type.

Комментариев нет:

Отправить комментарий