How does Java store a null?

java, null

Solution

Check out this question: What is null in Java? Basically, usually stored as 0's same as C++ but this can be implementation-specific and so you shouldn't rely on it.

Problem

Possible Duplicate: What is null in Java? How is null implemented in Java? Suppose I say ``` String x = null; ``` How is this null stored internally?

Original source

Related problems