In java String can be created by using new operator or by using + and +=. So, does all these string creation techniques check whether the string already exist in the string pool. If they dint then which String creation technique will check the pool.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
No they don't. Simple example :
Here the new version of "s" isn't the internal version of "hello" If you want to have the pool version of a specific string, you can use the Resources :
|
|||||||||
|
|
Only string constants and literals are automatically interned. If you're concatenating or otherwise creating strings, you need to actually call the intern() method. See http://download.oracle.com/javase/1.4.2/docs/api/java/lang/String.html#intern(). |
|||||
|