This could be the dumbest question ever asked but I think it is a total confusion for a newbie. Can somebody clarify what is meant by immutable? Why is a String immutable? What are the advantages/disadvantages of immutable objects? Why should a mutable object such as StringBuilder be preferred over String and vice-versa? A nice example (in Java) will be appreciated.
|
|
Immutable means that once an object of that Class has been created it can't be altered. This is useful as it means you can pass references to the object around, without worrying that someone else is going to change its contents. e.g.
If you imagine a similar class to Foo, but with a StringBuilder rather than a String as a member, you can see that a caller to getValue() would be able to alter the StringBuilder attribute of a Foo instance. Edit: Also beware of the different kinds of immutability you might find: Eric Lippert wrote a blog article about this. Basically you can have objects whose interface is immutable but behind the scenes actual mutables private state (and therefore can't be shared safely between threads). |
|||||||||||||||||||
|
|
Actually String is not immutable if you use the wikipedia definition suggested above. String's state does change post construction. Take a look at the hashcode() method. String caches the hashcode value in a local field but does not calculate it until the first call of hashcode(). This lazy evaluation of hashcode places String in an interesting position as an immutable object whose state changes, but it cannot be observed to have changed without using reflection. So maybe the definition of immutable should be an object that cannot be observed to have changed. If the state changes in an immutable object after it has been created but no-one can see it (without reflection) is the object still immutable? |
|||||
|
|
An immutable object is an object where the internal fields (or at least, all the internal fields that affect its external behavior) cannot be changed. There are a lot of advantages to immutable strings: Performance: Take the following operation:
The underlying C for the substring() method is probably something like this:
Note that none of the characters have to be copied! If the String object were mutable (the characters could change later) then you would have to copy all the characters, otherwise changes to characters in the substring would be reflected in the other string later. Concurrency: If the internal structure of an immutable object is valid, it will always be valid. There's no chance that different threads can create an invalid state within that object. Garbage collection: It's much easier for the garbage collector to make logical decisions about immutable objects. However, there are also downsides to immutability: Performance: Wait, I thought you said performance was an upside of immutability! Well, it is sometimes, but not always. Take the following code:
The two lines both replace the fourth character with the letter "a". Not only is the second piece of code more readable, it's faster. Look at how you would have to do the underlying code for foo. The substrings are easy, but now because there's already a character at space five and something else might be referencing foo, you can't just change it; you have to copy the whole string (of course some of this functionality is abstracted into functions in the real underlying C, but the point here is to show the code that gets executed all in one place).
Note that concatenate gets called twice meaning that the entire string has to be looped through! Compare this to the C code for the
The mutable string operation is obviously much faster. In Conclusion: In most cases, you want an immutable string. But if you need to do a lot of appending and inserting into a string, you need the mutability for speed. If you want the concurrency safety and garbage collection benefits with it the key is to keep your mutable objects local to a method:
Since the |
|||
|
|
Immutable objects are objects that can't be changed programmatically. They're especially good for multi-threaded environments or other environments where more than one process is able to alter (mutate) the values in an object. Just to clarify, however, StringBuilder is actually a mutable object, not an immutable one. A regular java String is immutable (meaning that once it's been created you cannot change the underlying string without changing the object). For example, let's say that I have a class called ColoredString that has a String value and a String color:
In this example, the ColoredString is said to be mutable because you can change (mutate) one of its key properties without creating a new ColoredString class. The reason why this may be bad is, for example, let's say you have a GUI application which has multiple threads and you are using ColoredStrings to print data to the window. If you have an instance of ColoredString which was created as
Then you would expect the string to always be "Blue". If another thread, however, got ahold of this instance and called
You would suddenly, and probably unexpectedly, now have a "Red" string when you wanted a "Blue" one. Because of this, immutable objects are almost always preferred when passing instances of objects around. When you have a case where mutable objects are really necessary, then you would typically guard the objet by only passing copies out from your specific field of control. To recap, in Java, java.lang.String is an immutable object (it cannot be changed once it's created) and java.lang.StringBuilder is a mutable object because it can be changed without creating a new instance. |
|||||||||
|
|
"immutable" means you cannot change value. If you have an instance of String class, any method you call which seems to modify the value, will actually create another String.
To preserve changes you should do something like this foo = foo.sustring(3); Immutable vs mutable can be funny when you work with collections. Think about what will happen if you use mutable object as a key for map and then change the value (tip: think about equals and hasCode). |
||||
|
|
|
I really like the explaination from SCJP Sun Certified Programmer for Java 5 Study Guide.
|
|||
|
|
Once instanciated, cannot be altered. Consider a class that an instance of might be used as the key for a hashtable or similar. Check out Java best practices. |
|||
|
|
|
One meaning has to do with how the value is stored in the computer, For a .Net string for example, it means that the string in memory cannot be changed, When you think you're changing it, you are in fact creating a new string in memory and pointing the existing variable (which is just a pointer to the actual collection of characters somewhere else) to the new string. |
|||
|
|
|
Objects which are immutable can not have their state changed after they have been created. There are three main reasons to use immutable objects whenever you can, all of which will help to reduce the number of bugs you introduce in your code:
There are also some other optimisations you might be able to make in code when you know that the state of an object is immutable - caching the calculated hash, for example - but these are optimisations and therefore not nearly so interesting. |
|||
|
|
|
Immutable means that once the object is created, non of its members will change. String is immutable since you can not change its content. For example: String s1 = " abc "; String s2 = s1.trim(); In the code above, the string s1 did not change, another object (s2) was created using s1. |
|||
|
|
|
An immutable object is the one you cannot modify after you create it. A typical example are string literals. A D programming language, which becomes increasingly popular, has a notion of "immutability" through "invariant" keyword. Check this Dr.Dobb's article about it - http://dobbscodetalk.com/index.php?option=com_myblog&show=Invariant-Strings.html&Itemid=29 . It explains the problem perfectly. |
|||
|
|
We can say that the Calendar class is a immutable, and I contrast the Date class is mutable. Why? In general a Calendar does not change, and dates do change. It is said that "An immutable object is an object where the internal fields (or at least, all the internal fields that affect its external behavior) cannot be changed."(Referring to our Calendar class) hence the Date class is the contrary(changeable or mutable) |
|||
|
|
|
Instead of giving a programmers answer, here's some grammar to mutate == to change adding "im-" to a word means that it is not so or not possible therefor: immutable === unchangeable. an immutable string is a string of which you cannot modify the content. in Java, this is done via the keyword e.g.: trying this: |
|||||||||
|