What is null?
Is null an instance of anything?
What set does null belong to?
How is it represented in the memory?
|
What is Is What set does How is it represented in the memory?
| ||||
|
feedback
|
No, there is no type which 15.20.2 Type Comparison Operator
|
|
|||
Null references existed in LISP (as NIL) in 1960, and probably earlier. But I don't think Hoare is really trying to claim invention of null references in that quote. – Stephen C May 6 '11 at 7:09 |
No. That is why
It is the one and only member of the null type, where the null type is defined as follows: "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." JLS 4.1
See above. In some contexts,
That is implementation specific, and you won't be able to see the representation of | ||||
|
feedback
|
|
The null keyword is a literal that represents a null reference, one that does not refer to any object. null is the default value of reference-type variables. Also maybe have a look at | ||||
|
feedback
|
|
Null is not an instance of any class. However, you can assign null to variables of any (object or array) type:
| |||
|
feedback
|
|
What is null? It is nothing. Is null an instance of anything? No as it is nothing It can't be instance of any thing. What set does null belong to? No any set How is it represented in the memory? If some reference points to it like:
In heap memory some space assigned to new created object. And o will point to that assigned space in memory. Now This means now o will not point to that memory space of object. | |||||
feedback
|
|
| |||||||||
feedback
|
|
| |||
|
feedback
|
|
For most intents and purposes, it's probably safe to think of it as being of type java.lang.Object. And if it's anything like .NET (and it probably is), null is probably represented in memory as either a 32 bit integer "0" or a 64 bit integer "0" depending on whether you're on a 32-bit or 64-bit machine. In other words, null is technically a pointer to memory address 0. | |||
feedback
|
|
Null in Java(tm) In C and C++, "NULL" is a constant defined in a header file, with a value like:
or:
or:
depending on the compiler and memory model options. NULL is not, strictly speaking, part of C/C++ itself. In Java(tm), "null" is not a keyword, but a special literal of the null type. It can be cast to any reference type, but not to any primitive type such as int or boolean. The null literal doesn't necessarily have value zero. And it is impossible to cast to the null type or declare a variable of this type. | |||
|
feedback
|