What is the difference between these two lines?
String s = "text";
String s = new String("text");
|
feedback
|
|
The latter explicitly creates a new and referentially distinct instance of a You very rarely would ever want to use the
Related questions
What referential distinction meansExamine the following snippet:
Nonetheless, if for whatever reason you need to create two ReferencesRelated issues | |||||
feedback
|
|
One creates a String in the String Constant Pool
the other one creates a string in the constant pool (
String literals on the other hand are reused. If you use | |||||
feedback
|
|
Although it looks the same from a programmers point of view, it has big performance impact. You would want to use the first form almost always. | |||
|
feedback
|
|
Think of If it gets invoked, it checks if there is already string in the pool with this value. If true, it returns this string object, hence to strings obtained this way are indeed the same object. If not, it creates a new string object internally, saves it in the pool and then returns it. Thus, when the same string value is queried the next time, it returns the same instance. Manually creating | |||
|
feedback
|
|
One simple way to understand the difference is below:-
output is
Thus new String() will always create a new instance. | |||
|
feedback
|