I like to know why do we call null string. Where Strings are objects in java and objects can not be null only references can be null.
Can anybody elaborate on it?
|
I like to know why do we call null string. Where Strings are objects in java and objects can not be null only references can be null. Can anybody elaborate on it?
| ||||
|
feedback
|
|
There's a bit of confusion here. I would expect 'null String' to be a String reference that doesn't actually reference a String (i.e. it's null). But this article claims a 'null string' to be an empty string. For this reason, I try to talk about null references - i.e. references that point to nothing at all, rather than a valid object. And (to be clear) empty Strings. A 'null String' to me means the same as a null reference, but the latter term is clearer to me. | |||||||||||||||||||
feedback
|
|
The expression "null string" simply means a reference of type "string" that references nothing (i.e. is "null"). It is a phrase that is commonly used but is not entirely correct as you point out. It is is just a simpler way of expressing a concept in casual conversation, nothing else. | |||
|
feedback
|
|
The JLS defines empty strings and the null literal as well as the a null reference. If an author introduces null strings he is supposed to define what exactly is meant by a null string. | |||
|
feedback
|
|
You can see it that way:
Here is an example:
Objects references can be I assume that you are coming from C++. An Java object reference it much more like a C++ pointer as it has a null value, but in a safe way. | |||
|
feedback
|
|
For me, a null string is a
And this is very different from an empty string:
Even if many sources (Wikipedia, Encyclopedia.com, Answers.com to cite them) seem to consider that a null string and an empty string are the same thing. | |||
|
feedback
|