Why are mutable structs evil? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T03:23:10Zhttp://stackoverflow.com/feeds/question/441309http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/441309/why-are-mutable-structs-evil7Why are mutable structs evil?divo2009-01-13T23:27:47Z2009-02-10T08:49:10Z
<p>Following the discussions here on SO I already read several times the remark that mutable structs are evil (like in the answer to this <a href="http://stackoverflow.com/questions/292676/is-there-a-workaround-for-overloading-the-assignment-operator-in-c">question</a>).</p>
<p>What's the actual problem with mutability and structs? </p>
http://stackoverflow.com/questions/441309/why-are-mutable-structs-evil/441323#4413239Answer by Marc Gravell for Why are mutable structs evil?Marc Gravell2009-01-13T23:31:02Z2009-01-13T23:36:38Z<p>Where to start ;-p</p>
<p><a href="http://blogs.msdn.com/ericlippert/archive/2008/05/14/mutating-readonly-structs.aspx" rel="nofollow">Eric Lippert's blog</a> is always good for a quote:</p>
<blockquote>
<p>This is yet another reason why mutable
value types are evil. Try to always
make value types immutable.</p>
</blockquote>
<p>First, you tend to lose changes quite easily... for example, getting things out of a list:</p>
<pre><code>Foo foo = list[0];
foo.Name = "abc";
</code></pre>
<p>what did that change? Nothing useful...</p>
<p>The same with properties:</p>
<pre><code>myObj.SomeProperty.Size = 22; // the compiler spots this one
</code></pre>
<p>forcing you to do:</p>
<pre><code>Bar bar = myObj.SomeProperty;
bar.Size = 22;
myObj.SomeProperty = bar;
</code></pre>
<p>less critically, there is a size issue; mutable objects <strong>tend</strong> to have multiple properties; yet if you have a struct with two <code>int</code>s, a <code>string</code>, a <code>DateTime</code> and a <code>bool</code>, you can very quickly burn through a lot of memory. With a class, multiple callers can share a reference to the same instance (references are small).</p>
<p>(still thinking...)</p>
http://stackoverflow.com/questions/441309/why-are-mutable-structs-evil/441335#4413352Answer by Bombe for Why are mutable structs evil?Bombe2009-01-13T23:34:17Z2009-01-13T23:34:17Z<p>It doesn’t have anything to do with structs (and not with C#, either) but in Java you might get problems with mutable objects when they are e.g. keys in a hash map. If you change them after adding them to a map and it changes its <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html#hashCode()" rel="nofollow">hash code</a>, evil things might happen.</p>
http://stackoverflow.com/questions/441309/why-are-mutable-structs-evil/441337#4413375Answer by Konrad Rudolph for Why are mutable structs evil?Konrad Rudolph2009-01-13T23:34:40Z2009-01-13T23:34:40Z<p>I wouldn't say <em>evil</em> but mutability is often a sign of overeagerness on the part of the programmer to provide a maximum of functionality. In reality, this is often not needed and that, in turn, makes the interface smaller, easier to use and harder to use wrong (= more robust).</p>
<p>One example of this is read/write and write/write conflicts in race conditions. These simply can't occur in immutable structures, since a write is not a valid operation.</p>
<p><a href="http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion?answer=407007#407007">Also, I claim that <strong>mutability is almost never actually needed</strong></a>, the programmer just <em>thinks</em> that it <em>might</em> be in the future. For example, it simply doesn't make sense to change a date. Rather, create a new date based off the old one. This is a cheap operation, so performance is not a consideration.</p>
http://stackoverflow.com/questions/441309/why-are-mutable-structs-evil/441357#4413576Answer by Daniel for Why are mutable structs evil?Daniel2009-01-13T23:42:58Z2009-02-10T08:49:10Z<p>Structs are value types which means they are copied when they are passed around. </p>
<p>So if you change a copy you are changing only that copy, not the original and not any other copies which might be around.</p>
<p>If your struct is immutable then all copies will be the same.</p>
http://stackoverflow.com/questions/441309/why-are-mutable-structs-evil/441362#4413623Answer by Glomek for Why are mutable structs evil?Glomek2009-01-13T23:45:53Z2009-01-13T23:45:53Z<p>There are many advantages and disadvantages to mutable data. The million-dollar disadvantage is aliasing. If the same value is being used in multiple places, and one of them changes it, then it will appear to have magically changed to the other places that are using it. This is related to, but not identical with, race conditions.</p>
<p>The million-dollar advantage is modularity, sometimes. Mutable state can allow you to hide changing information from code that doesn't need to know about it.</p>
<p><a href="http://dspace.mit.edu/handle/1721.1/6094" rel="nofollow">The Art of the Interpreter</a> goes into these trade offs in some detail, and gives some examples.</p>
http://stackoverflow.com/questions/441309/why-are-mutable-structs-evil/441375#4413754Answer by Morten Christiansen for Why are mutable structs evil?Morten Christiansen2009-01-13T23:52:30Z2009-01-13T23:52:30Z<p>Value types basically represents immutable concepts. Fx, it makes no sense to have a mathematical value such as an integer, vector etc. and then be able to modify it. That would be like redefining the meaning of a value. Instead of changing a value type, it makes more sense to assign another unique value. Think about the fact that value types are compared by compraing all the values of its properties. The point is that if the properties are the same then it is the same universal representation of that value.</p>
<p>As Konrad mentions it doesn't make sense to change a date either, as the value represents that unique point in time and not an instance of a time object which has any state or context-dependency.</p>
<p>Hopes this makes any sense to you. It is more about the concept you try to capture with value types than practical details, to be sure. </p>