Once I studied about the advantage of a string being immutable because of something to improve performace in memory.
Can anybody explain this to me? I can't find it on the Internet.
|
Once I studied about the advantage of a string being immutable because of something to improve performace in memory. Can anybody explain this to me? I can't find it on the Internet. |
||||
|
|
Immutability (for strings or other types) can have numerous advantages:
Immutable strings also help avoid the temptation of using strings as buffers. Many defects in C/C++ programs relate to buffer overrun problems resulting from using naked character arrays to compose or modify string values. Treating strings as a mutable types encourages using types better suited for buffer manipulation (see |
|||||||
|
|
Consider the alternative. Java has no const qualifier. If String objects were mutable, then any method to which you pass a reference to a string could have the side-effect of modifying the string. Immutable strings eliminate the need for defensive copies, and reduce the risk of program error. |
|||
|
|
|
Immutable strings are cheap to copy, because you don't need to copy all the data - just copy a reference or pointer to the data. Immutable classes of any kind are easier to work with in multiple threads, the only synchronization needed is for destruction. |
|||
|
|
|
a) Imagine StringPool facility without making string immutable , its not possible at all because in case of string pool one string object/literal e.g. "Test" has referenced by many reference variables , so if any one of them change the value others will be automatically gets affected i.e. lets say
String A = "Test" and String B = "Test"
Now String B called "Test".toUpperCase() which change the same object into "TEST" , so A will also be "TEST" which is not desirable. |
|||
|
|
|
Think of various strings sitting on a common pool. String variables then point to locations in the pool. If u copy a string variable, both the original and the copy shares the same characters. These efficiency of sharing outweighs the inefficiency of string editing by extracting substrings and concatenating. |
||||
|
|
|
Perhaps, my answer is outdated, but probably someone will found here a new information. Why Java String is immutable and why it is good:
|
|||
|
|