We normally create objects using the new keyword, like:
Object obj = new Object();
Strings are objects, yet we do not use new to create them:
String str = "Hello World";
Why is this? Can I make a String with new?
|
We normally create objects using the
Strings are objects, yet we do not use
Why is this? Can I make a String with |
||||
|
|
In addition to what was already said, String literals [ie, Strings like
but if you had
then its possible to have
(and in case anyone needs reminding, always use Interning String literals is good because they are often used more than once. For example, consider the (contrived) code:
If we didn't have interning of Strings, "Next iteration" would need to be instantiated 10 times, whereas now it will only be instantiated once. |
|||||||||||||||||
|
|
It's a shortcut. It wasn't originally like that, but Java changed it. This FAQ talks about it briefly. The Java Specification guide talks about it also. But I can't find it online. |
|||
|
|
|
String is subject to a couple of optimisations (for want of a better phrase). Note that String also has operator overloading (for the + operator) - unlike other objects. So it's very much a special case. |
|||||
|
|
Strings are "special" objects in Java. The Java designers wisely decided that Strings are used so often that they needed their own syntax as well as a caching strategy. When you declare a string by saying:
myString is a reference to String object with a value of "something". If you later declare:
Java is smart enough to work out that myString and myOtherString are the same and will store them in a global String table as the same object. It relies on the fact that you can't modify Strings to do this. This lowers the amount of memory required and can make comparisons faster. If, instead, you write
Java will create a brand new object for you, distinct from the myString object. |
|||||
|
|
Syntactic sugar. The
syntax is still available. |
|||||||||||
|
|
In Java, Strings are a special case, with many rules that apply only to Strings. The double quotes causes the compiler to create a String object. Since String objects are immutable, this allows the compiler to intern multiple strings, and build a larger string pool. Two identical String constants will always have the same object reference. If you don't want this to be the case, then you can use new String(""), and that will create a String object at runtime. The intern() method used to be common, to cause dynamically created strings to be checked against the string lookup table. Once a string in interned, the object reference will point to the canonical String instance.
When the classloader loads a class, all String constants are added to the String pool. |
|||
|
|
|
You can still use |
|||
|
|
|
Class |
|||
|
|
There's almost no need to new a string as the literal (the characters in quotes) is already a String object created when the host class is loaded. It is perfectly legal to invoke methods on a literal and don, the main distinction is the convenience provided by literals. It would be a major pain and waste of tine if we had to create an array of chars and fill it char by char and them doing a new String(char array). |
|||
|
|
|
Javac does all the fun stuff under the hood when it sees a string constant. Fortunately :) |
|||
|
|
|
Feel free to create a new String with
The usual notation
EDIT In response to the comment: this was not intended to be an advise but just an only a direct response to the questioners thesis, that we do not use the 'new' keyword for Strings, which simply isn't true. Hope this edit (including the above) clarifies this a bit. BTW - there's a couple of good and much better answers to the above question on SO. |
||||
|
The literal pool contains any Strings that were created without using the keyword There is a difference : String without new reference is stored in String literal pool and String with new says that they are in heap memory. String with new are elsewhere in memory just like any other object. |
||||
|
|
|
Total Objects: 4 (a, c, d, "def"). Hope this clears a few doubts. :) |
|||
|
|