On this page you can get a detailed analysis of a word or phrase, produced by the best artificial intelligence technology to date:
общая лексика
пустой указатель
в программировании - ссылка на ноль. Такое значение указателя может, означать неудачный результат работы функции. Это значение часто присваивается указателю в качестве начального или значения по умолчанию
Смотрите также
общая лексика
адресная арифметика с указателями
широко используется в языках Си и C++
Смотрите также
общая лексика
ссылочный тип
тип данных, определяющий переменные, называющиеся указателями. Эти переменные содержат адрес памяти, где хранится значение соответствующего типа. Использование указателей, с одной стороны, ускоряет работу программы, а с другой, - затрудняет контроль правильности программы
синоним
Смотрите также
In computing, a null pointer or null reference is a value saved for indicating that the pointer or reference does not refer to a valid object. Programs routinely use null pointers to represent conditions such as the end of a list of unknown length or the failure to perform some action; this use of null pointers can be compared to nullable types and to the Nothing value in an option type.
A null pointer should not be confused with an uninitialized pointer: a null pointer is guaranteed to compare unequal to any pointer that points to a valid object. However, depending on the language and implementation, an uninitialized pointer may not have any such guarantee. It might compare equal to other, valid pointers; or it might compare equal to null pointers. It might do both at different times; or the comparison might be undefined behaviour.