This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Hi friends, What's the reason behind making String immutable.
Thomas Paul
mister krabs
Ranch Hand
Joined: May 05, 2000
Posts: 13974
posted
0
Performance. Immutable strings can be placed in a string pool. Final classes and methods don't participate in polymorphism and can be inlined at compile time.
I read somewhere that it also has to do something with security. So, someone cant write a String subclass and get at some secret information stored in Strings, something like that...
The future is here. It's just not evenly distributed yet. - William Gibson
Consultant @ Xebia. Sonny GillTweets
John Dale
Ranch Hand
Joined: Feb 22, 2001
Posts: 399
posted
0
Consider
It would be good if nobody could make such a SpyString and pass it into code that might be expected to compare the it to some confidential information, like a password or PIN.
Sayed Ibrahim Hashimi
Ranch Hand
Joined: May 17, 2001
Posts: 148
posted
0
The String class being final is different then the fact that strings are immutable. Being final means that the String class cannot be subclassed. And the fact the strings are immutable means that once a String has been created it can't be changed. You can only what the reference points to. so
Right. I was trying to speak to the earlier point of subclassing. Since I don't think the question has been answered yet... One reason for making string immutable: Suppose a string is passed to an object which needs to save the the information in that string for future use. If the string were not immutable, it would need to make a copy of the information in string, at extra cost in memory and time, or save a reference to the string and run the risk that somebody else will change the value of the string in the future, which is generally unacceptable. Thus we need an immutable String class.