Possible Duplicate:
What is the purpose of the expression “new String(…)” in Java?
When should I use new String() and when should I use ""
When should I use |
|||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
If you are just trying to initialize a string variable whose value you don't know yet "" should be fine.
Difference is "" uses same empty string every time, while |
||||
|
|
|
The only time you should use a String constructor that takes a String argument is when the argument is a substring of a very large string, and you expect the substring to live much longer than the large string. such as
the reason for this, is that when you do substring, you don't actually create a new char array, you merely reference the character array (with an offset and length) from the original String. Therefore, the original char array from the original string cannot be garbage collected because the smaller string maintains a reference to it. By doing new String(x) you copy the data and remove the reference, so that when the larger string can otherwise be gc'ed it will. |
|||
|
|
|
When you think of using |
|||
|
|