what is difference between
String str = new String("abc");
and
String str = "abc";
|
what is difference between
and
| ||||
|
feedback
|
|
When you use a string literal the string can be interned but when you use In this example both string literals refer the same object:
Here two different objects are created and they have different references:
In general you should use the string literal notation when possible. It is easier to read and it gives the compiler a chance to optimize your code. | |||||||||
feedback
|
|
A String literal is a java language concept. This is a String literal:
A String object is an individual instance of the
are all valid but have a slight difference:
| |||
|
feedback
|
|
Using the on the other hand, using Wrapping a String constructor around a string literal is of no value, it just needlessly uses more memory than it needs to. | ||||
feedback
|
|
The long answer is available elsewhere, so I'll give you the short one. When you do this:
You are calling the Given the following code:
When you check for object identity by doing However, you don't need to
In this instance, In terms of good coding practice - do not use | |||||
feedback
|
|
in first case there are two objects created. and in case 2 its just one. Altought both ways str is referring to "abc"; | |||
|
feedback
|
|
Some disassembly is always interesting...
| |||
|
feedback
|
|
As Strings are immutable when you do
while creating the string the jvm searches in the pool of strings if there already exists a string value "xyz", if so 'a' will simply be a reference of that string and no new String object is created. But if you say
you force jvm to create a new string reference even if "xyz" is in itz pool. For more information read http://javatechniques.com/public/java/docs/basics/string-equality.html | |||
|
feedback
|
|
In addition to the answers already posted, also see this excellent article on javaranch. | ||||
|
feedback
|
|
According to String class documentation they are equivalent. Documentation for EDITED: Look for other responses becasue it seems that Java documentation is misleading :( | |||||||||||||||
feedback
|
|
String s = new String("FFFF") creates 2 objects: "FFFF" string and String object, which point to "FFFF" string, so it is like pointer to pointer (reference to reference, i don't keen with terminology). | |||
feedback
|
|
There is a subtle differences between String object and string literal. String s = "abc"; // creates one String object and one reference variable In this simple case, "abc" will go in the pool and s will refer to it. String s = new String("abc"); // creates two objects,and one reference variable In this case, because we used the new keyword, Java will create a new String object in normal (non-pool) memory, and s will refer to it. In addition, the literal "abc" will be placed in the pool. | |||
|
feedback
|