If a String Object references to a null value, is there any memory allocated for this value?
e.g. String str = ""; String str = null;
str's value is null, or empty String, is this allocated somewhere?
TEXT ADDED what happens when a String reference points to null (how do you specify this null and still not allocating memory for this "specification"?), how is this information stored? because the reference is practically storing an address.