Possible Duplicate:
What is the purpose of the expression “new String(…)” in Java?
It's immutable, why would you need to invoke String.String(String str) ?
It's immutable, why would you need to invoke |
|||||||
|
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.
|
new String(s) can help garbase collection:
|
|||||||||
|
|
From the API doc:
The only reason I can think of is in the situation where:
|
|||
|
|
|
Just in case you need String that are not the same but equal. Maybe for testing to make sure, people really do |
|||
|
|