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?

link|improve this question

62% accept rate
feedback

5 Answers

up vote 7 down vote accepted

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.

link|improve this answer
1  
+1 for the differentiation between "null" and "empty" in relationship to Strings. A common misconception, in my experience. – aperkins Jan 31 '10 at 16:21
1  
Apache Commons Lang StringUtils makes clear distinction between "null", "empty" and "blank"... all useful distinctions. – skaffman Jan 31 '10 at 16:24
1  
@skaffman - what on earth is the difference between empty and blank?? – Dominic Rodger Jan 31 '10 at 16:25
@Roger, Containing whitespace versus a length of zero maybe? – rsp Jan 31 '10 at 16:27
3  
@Dominic: An empty string is one with a length of zero. A blank string is one whose characters are either spaces or control characters. So an empty string is always blank, but a blank string isn't always empty. – John Feminella Jan 31 '10 at 16:33
show 2 more comments
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.

link|improve this answer
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.

link|improve this answer
feedback

You can see it that way:

  • Objects are instances of classes.
  • Object references refer to none or a single object.

Here is an example:

String a; // object reference a has the value null
a = new String("Hello World"); // new object is assigned to reference a. Yes, I
                               // know that the string constructor should be avoided, but
                               // to show the point it is necessary
String b = a; // object references point to the same object 

Objects references can be null and are null if there is no object assigned to it. If you call such an object, a NullPointerException is thrown.

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.

link|improve this answer
feedback

For me, a null string is a String that is null:

String NULL = null;

And this is very different from an empty string:

String EMPTY = "";

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.