What is the difference between a mutable and immutable string in C#?
|
|
i.e. Strings cannot be altered. When you alter a string (by adding to it for example), you are actually creating a new string. But so if you have to alter a string many times, such as mutliple concatenations then use |
||||
|
|
|
Mutable and immutable are English words meaning "can change" and "cannot change" respectively. The meaning of the words is the same in the IT context; i.e.
|
||||
|
All A mutable object, by contrast, has data fields that can be altered. One or more of its methods will change the contents of the object, or it has a Property that, when written into, will change the value of the object. If you have a mutable object- the most similar one to String is However, you can change its contents- so it's much, much more memory efficient than making a complete copy because you wanted to change a single character, or something similar. Generally, the right thing to do is use mutable objects while you're creating something, and immutable objects once you're done. This applies to objects that have immutable forms, of course; most of the collections don't. It's often useful to provide read-only forms of collections, though, which is the equivalent of immutable, when sending the internal state of your collection to other contexts- otherwise, something could take that return value, do something to it, and corrupt your data. |
|||
|
|
|
An object is mutable if, once created, its state can be changed by calling various operations on it, otherwise it is immutable. Immutable StringIn C# (and .NET) a string is represented by class System.String. The 'string' keyword is an alias for this class. The System.String class is immutable, i.e once created its state cannot be altered. So all the operations you perform on a string like Substring, Remove, Replace, concatenation using '+' operator etc will create a new string and return it. See the following program for demonstration -
This will print 'string' and 'mystring' respectively. For the benefits of immutability and why string are immutable check Why .NET String is immutable?. Mutable StringIf you want to have a string which you want to modify often you can use the For more advice on when to use |
||||
|
|
|
Immutable : When you do some operation on a object, it creates a new object hence state is not modifiable as in case of string. Mutable When you perform some operation on a object, object itself modified no new obect created as in case of StringBuilder |
||||
|
|
|
in implementation detail. CLR2's System.String is muttable. StringBuilder.Append calling String.AppendInplace (private method) CLR4's System.String is imuttable. StringBuilder have Char array with chunking. |
|||
|
|
|
To clarify there is no such thing as a mutable string in C# (or .NET in general). Other langues support mutable strings (string which can change) but the .NET framework does not. So the correct answer to your question is ALL string are immutable in C#. string has a specific meaning. "string" lowercase keyword is merely a shortcut for an object instantiated from System.String class. All objects created from string class are ALWAYS immutable. If you want a mutable representation of text then you need to use another class like StringBuilder; but then my definition it is not a string. |
|||
|
|
|
The data value may not be changed. Note: The variable value may be changed, but the original immutable data value was discarded and a new data value was created in memory. |
|||
|
|
|
From http://yassershaikh.com/what-is-the-difference-between-strings-and-stringbuilder-in-c-net/ Short Answer : String is immutable – whereas StringBuilder is mutable. What does that mean ? Wiki says : In object-oriented, an immutable object is an object whose state cannot be modified after it is created. This is in contrast to a mutable object, which can be modified after it is created. From the StringBuilder Class documentation: The String object is immutable. Every time you use one of the methods in the System.String class, you create a new string object in memory, which requires a new allocation of space for that new object. In situations where you need to perform repeated modifications to a string, the overhead associated with creating a new String object can be costly. The System.Text.StringBuilder class can be used when you want to modify a string without creating a new object. For example, using the StringBuilder class can boost performance when concatenating many strings together in a loop. |
|||
|
|