Following the discussions here on SO I already read several times the remark that mutable structs are evil (like in the answer to this question).

What's the actual problem with mutability and structs?

link|improve this question

3  
Since I can think of a few cases where they are useful (especially private nested structs where the number of places the hazards are encountered are small), may I offer that perhaps they aren't evil, just very, very naughty? – Jon Hanna Dec 2 '10 at 14:27
feedback

12 Answers

up vote 34 down vote accepted

Structs are value types which means they are copied when they are passed around.

So if you change a copy you are changing only that copy, not the original and not any other copies which might be around.

If your struct is immutable then all automatic copies resulting from being passed by value will be the same.

If you want to change it you have to consciously do it by creating a new instance of the struct with the modified data. (not a copy)

link|improve this answer
18  
"If your struct is immutable then all copies will be the same." No, it means that you have to consciously make a copy if you want a different value. It means you won't get caught modifying a copy thinking you are modifying the original. – Lucas May 15 '09 at 15:43
5  
@Lucas I think you are talking about a different kind of copy I am talking about the automatic copies made as a result of being passed by value, Your 'consciously made copy' is different on purpose you didn't make it by mistake and its not really a copy its a deliberate new instants containing different data. – trampster May 26 '10 at 21:34
Your edit (16 months later) makes that a little clearer. I still stand by "(immutable struct) means you won't get caught modifying a copy thinking you are modifying the original", though. – Lucas May 27 '10 at 15:00
@Lucas: If one reads calls Foo.GetInfo(recordId) to read some data into a struct, and then writes to a field of that struct, one is modifying a copy. The fact that one is writing to a struct field makes that self-apparent (perhaps Hungarian-ish notation on the name of the struct type might help the fact that it is a struct). If Foo.GetInfo(recordId) returns a class-type object, attempts to mutate the returned object may update nothing, or they may update the proper record in Foo, or they may "update" (i.e. corrupt) any number of other objects. – supercat Oct 28 '11 at 15:58
3  
@Lucas: The danger of making a copy of a struct, modifying it, and somehow thinking one is modifying the original (when the fact that one is writing a struct field makes self-apparent the fact that one is only writing one's copy) seems pretty small compared to the danger that someone who holds a class object as a means of holding the information contained therein will mutate the object to update its own information and in the process corrupt the information held by some other object. – supercat Oct 28 '11 at 16:11
feedback

Where to start ;-p

Eric Lippert's blog is always good for a quote:

This is yet another reason why mutable value types are evil. Try to always make value types immutable.

First, you tend to lose changes quite easily... for example, getting things out of a list:

Foo foo = list[0];
foo.Name = "abc";

what did that change? Nothing useful...

The same with properties:

myObj.SomeProperty.Size = 22; // the compiler spots this one

forcing you to do:

Bar bar = myObj.SomeProperty;
bar.Size = 22;
myObj.SomeProperty = bar;

less critically, there is a size issue; mutable objects tend to have multiple properties; yet if you have a struct with two ints, a string, a DateTime and a bool, 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).

link|improve this answer
Well yes but the compiler is just stupid that way. Not to allow assignment to property-struct members was IMHO a stupid design decision, because it is allowed for ++ operator. In this case, the compiler just writes the explicit assignment itself instead of hustling the programmer. – Konrad Rudolph Jan 14 '09 at 8:08
3  
@Konrad: myObj.SomeProperty.Size = 22 would modify a COPY of myObj.SomeProperty. The compiler is saving you from an obvious bug. And it is NOT allowed for ++. – Lucas May 15 '09 at 15:38
@Lucas: Well, the Mono C# compiler certainly allows it – since I don’t have Windows I can’t check for Microsoft’s compiler. – Konrad Rudolph Sep 20 '10 at 10:33
3  
@Konrad - with one less indirection it should work; it is the "mutating a value of something that only exists as a transient value on the stack and which is about to evaporate into nothingness" which is the case that is blocked. – Marc Gravell Sep 20 '10 at 11:13
1  
@LarsTech lol - fair enough! – Marc Gravell Apr 13 at 14:27
show 5 more comments
feedback

I wouldn't say evil 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).

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.

Also, I claim that mutability is almost never actually needed, the programmer just thinks that it might 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.

link|improve this answer
Eric Lippert says they are... see my answer. – Marc Gravell Jan 13 '09 at 23:37
Immutability is certainly good with threading, but you can write an immutable class just as easily and just as usefully. But still a good answer. I would +1, but I'm out for today. – Marc Gravell Jan 13 '09 at 23:44
7  
Much as I respect Eric Lippert he isn't God (or at least not yet). The blog post you link to and your post above are reasonable arguments for making structs immutable as matter of course but they are actually very weak as arguments for never using mutable structs. This post, however, is a +1. – Stephen Martin Jan 14 '09 at 1:12
feedback

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.

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.

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.

link|improve this answer
Well, they should represent immutable concepts, at least ;-p – Marc Gravell Jan 13 '09 at 23:54
True, but I suppose you can misuse most programming constructs – Morten Christiansen Jan 13 '09 at 23:58
1  
Well, I suppose they could have made System.Drawing.Point immutable but it would have been a serious design error IMHO. I think points are actually an archetypical value type and they are mutable. And they don't cause any problems for anyone beyond really early programming 101 beginners. – Stephen Martin Jan 14 '09 at 1:29
2  
In principle I think points should also be immutable but if it makes the type harder or less elegant to use then of course that has to be considered too. There's no point in having code constructs which uphold the finest princicples if no one wants to use them ;) – Morten Christiansen Jan 14 '09 at 10:19
feedback

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 hash code, evil things might happen.

link|improve this answer
The same is true in C#, so good point, yes. – Konrad Rudolph Jan 13 '09 at 23:36
1  
That is true if you use a class as the key in a map, too. – Marc Gravell Jan 13 '09 at 23:37
feedback

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.

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.

The Art of the Interpreter goes into these trade offs in some detail, and gives some examples.

link|improve this answer
structs are not be aliased in c#. Every struct assignment is a copy. – recursive Sep 24 '10 at 19:24
@recursive: In some cases, that's a major advantage of mutable structs, and one which makes me question the notion that structs should not be mutable. The fact that compilers sometimes implicitly copy structs doesn't reduce the usefulness of mutable structs. – supercat Oct 9 '10 at 20:44
feedback

There are another couple corner cases that could lead to unpredictible behavior from programmers point of view. Here couple of them.

  1. Immutable value types and readonly fields

// Simple mutable structure. 
// Method IncrementI mutates current state.
struct Mutable
{
    public Mutable(int i) : this() 
    {
        I = i;
    }

    public void IncrementI() { I++; }

    public int I {get; private set;}
}

// Simple class that contains Mutable structure
// as readonly field
class SomeClass 
{
    public readonly Mutable mutable = new Mutable(5);
}

// Simple class that contains Mutable structure
// as ordinary (non-readonly) field
class AnotherClass 
{
    public Mutable mutable = new Mutable(5);
}

class Program
{
    void Main()
    {
        // Case 1. Mutable readonly field
        var someClass = new SomeClass();
        someClass.mutable.IncrementI();
        // still 5, not 6, because SomeClass.mutable field is readonly
        // and compiler creates temporary copy every time when you trying to
        // access this field
        Console.WriteLine(someClass.mutable.I);

        // Case 2. Mutable ordinary field
        var anotherClass = new AnotherClass();
        anotherClass.mutable.IncrementI();

        //Prints 6, because AnotherClass.mutable field is not readonly
        Console.WriteLine(anotherClass.mutable.I);
    }
}

  1. Mutable value types and array

Suppose have an array of our Mutable struct and we're calling IncrementI method for the first element of that array. What behavior are you expecting from this call? Should it change array's value or only a copy?

Mutable[] arrayOfMutables = new Mutable[1];
arrayOfMutables[0] = new Mutable(5);

// Now we actually accessing reference to the first element
// without making any additional copy
arrayOfMutables[0].IncrementI();

//Prints 6!!
Console.WriteLine(arrayOfMutables[0].I);

// Every array implements IList<T> interface
IList<Mutable> listOfMutables = arrayOfMutables;

// But accessing values through this interface lead
// to different behavior: IList indexer returns a copy
// instead of an managed reference
listOfMutables[0].IncrementI(); // Should change I to 7

// Nope! we still have 6, because previous line of code
// mutate a copy instead of a list value
Console.WriteLine(listOfMutables[0].I);

So, mutable structs are not evil as long as you and the rest of the team clearly understand what you are doing. But there are too many corner cases when program behavior would be different from expected one, that could lead to subtle hard to produce and hard to understand errors.

link|improve this answer
2  
What should happen, if .net languages had slightly better value-type support, would be struct methods should be forbidden from mutating 'this' unless they are explicitly declared as doing so, and methods that are so declared should be forbidden in read-only contexts. Arrays of mutable structs offer useful semantics which cannot be efficiently achieved via other means. – supercat Sep 28 '11 at 23:09
these are good examples of very subtle issue that would arise from mutable structs. I would not have expected any of this behaviour. Why would an array give you a reference, but an interface give you a value? I would have thought, aside from values-all-the-time (which is what I'd really expect), that it would at least be the other way around: interface giving references; arrays giving values... – Sahuagin Feb 6 at 11:54
feedback

Personally when I look at code the following looks pretty clunky to me:

data.value.set ( data.value.get () + 1 ) ;

rather than simply

data.value++ ; or data.value = data.value + 1 ;

Data encapsulation is useful when passing a class around and you want to ensure the value is modified in a controlled fashion. However when you have public set and get functions that do little more than set the value to what ever is passed in, how is this an improvement over simply passing a public data structure around?

When I create a private structure inside a class, I created that structure to organize a set of variables into one group. I want to be able to modify that structure within the class scope, not get copies of that structure and create new instances.

To me this prevents a valid use of structures being used to organize public variables, if I wanted access control I'd use a class.

link|improve this answer
feedback

Structs with public mutable fields or properties are not evil.

Struct methods (as distinct from property setters) which mutate "this" are somewhat evil, only because .net doesn't provide a means of distinguishing them from methods which do not. Struct methods that do not mutate "this" should be invokable even on read-only structs without any need for defensive copying. Methods which do mutate "this" should not be invokable at all on read-only structs. Since .net doesn't want to forbid struct methods that don't modify "this" from being invoked on read-only structs, but doesn't want to allow read-only structs to be mutated, it defensively copies structs in read-only contexts, arguably getting the worst of both worlds.

Despite the problems with the handling of self-mutating methods in read-only contexts, however, mutable structs often offer semantics far superior to mutable class types. Consider the following three method signatures:

struct PointyStruct {public int x,y,z;};
class PointyClass {public int x,y,z;};

void Method1(PointyStruct foo);
void Method2(ref PointyStruct foo);
void Method3(PointyClass foo);

For each method, answer the following questions:

  1. Assuming the method doesn't use any "unsafe" code, might it modify foo?
  2. If no outside references to 'foo' exist before the method is called, could an outside reference exist after?

Method1 can't modify foo, and never gets a reference. Method2 gets a short-lived reference to foo, which it can use modify the fields of foo any number of times, in any order, until it returns, but it can't persist that reference. Before Method2 returns, unless it uses unsafe code, any and all copies that might have been made of its 'foo' reference will have disappeared. Method3, unlike Method2, gets a promiscuously-sharable reference to foo, and there's no telling what it might do with it. It might not change foo at all, it might change foo and then return, or it might give a reference to foo to another thread which might mutate it in some arbitrary way at some arbitrary future time. The only way to limit what Method3 might do to a mutable class object passed into it would be to encapsulate the mutable object into a read-only wrapper, which is ugly and cumbersome.

Arrays of structures offer wonderful semantics. Given RectArray[500] of type Rectangle, it's clear and obvious how to e.g. copy element 123 to element 456 and then some time later set the width of element 123 to 555, without disturbing element 456. "RectArray[432] = RectArray[321]; ...; RectArray[123].Width = 555;". Knowing that Rectangle is a struct with an integer field called Width will tell one all one needs to know about the above statements.

Now suppose RectClass was a class with the same fields as Rectangle and one wanted to do the same operations on a RectClassArray[500] of type RectClass. Perhaps the array is supposed to hold 500 pre-initialized immutable references to mutable RectClass objects. in that case, the proper code would be something like "RectClassArray[321].SetBounds(RectClassArray[456]); ...; RectClassArray[321].X = 555;". Perhaps the array is assumed to hold instances that aren't going to change, so the proper code would be more like "RectClassArray[321] = RectClassArray[456]; ...; RectClassArray[321] = New RectClass(RectClassArray[321]); RectClassArray[321].X = 555;" To know what one is supposed to do, one would have to know a lot more both about RectClass (e.g. does it support a copy constructor, a copy-from method, etc.) and the intended usage of the array. Nowhere near as clean as using a struct.

To be sure, there is unfortunately no nice way for any container class other than an array to offer the clean semantics of a struct array. The best one could do, if one wanted a collection to be indexed with e.g. a string, would probably be to offer a generic "ActOnItem" method which would accept a string for the index, a generic parameter, and a delegate which would be passed by reference both the generic parameter and the collection item. That would allow nearly the same semantics as struct arrays, but unless the vb.net and C# people can be pursuaded to offer a nice syntax, the code is going to be clunky-looking even if it is reasonably performance (passing a generic parameter would allow for use of a static delegate and would avoid any need to create any temporary class instances).

Personally, I'm peeved at the hatred Eric Lippert et al. spew regarding mutable value types. They offer much cleaner semantics than the promiscuous reference types that are used all over the place. Despite some of the limitations with .net's support for value types, there are many cases where mutable value types are a better fit than any other kind of entity.

link|improve this answer
I fail to see how your example requires mutable value types. With the consensus clearly against your viewpoint can you show a clear example why value types should be mutable? – Ron Warholic Oct 27 '11 at 23:21
1  
@Ron Warholic: Which is clearer: "SomeRect.Left -= 10;" or "SomeRect = New Rectangle(SomeRect.Left-10, SomeRect.Top, SomeRect.Width, SomeRect.Height);" The first is apt to be more efficient, and I would suggest it is also much clearer. Knowing that SomeRect is a struct with field "Left" is sufficient to know that the first statement only alters SomeRect.Left. To know the effect of the second statement, one would have to also know that SomeRect is a Rectangle, with fields Left, Top, Width, Height, and no others, and that the constructor sets them in that order. Note that... – supercat Oct 28 '11 at 14:53
@Ron Warholic: it's not self-apparent that SomeRect is a Rectangle. It could be some other type which can be implicitly typecast from Rectangle. Although, the only system-defined type which can be implicitly typecast from Rectangle is RectangleF, and the compiler would squawk if one tried to pass the fields of a RectangleF to the constructor of Rectangle (since the former are Single, and the latter Integer), there could be user-defined structs which allow such implicit typecasts. BTW, the first statement would work equally well whether SomeRect were a Rectangle or a RectangleF. – supercat Oct 28 '11 at 14:59
All you've shown is that in a contrived example you believe one method is clearer. If we take your example with Rectangle I could easily come up with a common sitation where you get highly unclear behaviour. Consider that WinForms implements a mutable Rectangle type used in the form's Bounds property. If I want to change bounds I would want to use your nice syntax: form.Bounds.X = 10; However this changes precisely nothing on the form (and generates a lovely error informing you of such). Inconsistency is the bane of programming and is why immutability is wanted. – Ron Warholic Oct 28 '11 at 16:28
To your second point, I fail to see how that is relevant. Being able to replace a Rectangle with a RectangleF with slightly fewer changes is hardly a common situation and moreso still requires changing the declared type at any declaration sites. I think it's a stretch to claim that being able to slightly modify a type easier is worth the loss of clarity clearly shown in the answers here. – Ron Warholic Oct 28 '11 at 16:44
show 3 more comments
feedback

Imagine you have an array of 1,000,000 structs. Each struct representing an equity with stuff like bid_price, offer_price (perhaps decimals) and so on, this is created by C#/VB.

Imagine that array is created in a block of memory allocated in the unmanaged heap so that some other native code thread is able to concurrently access the array (perhaps some high-perf code doing math).

Imagine the C#/VB code is listening to a market feed of price changes, that code may have to access some element of the array (for whichever security) and then modify some price field(s).

Imagine this is being done tens or even hundreds of thousands of times per second.

Well lets face facts, in this case we really do want these structs to be mutable, they need to be because they are being shared by some other native code so creating copies isn't gonna help; they need to be because making a copy of some 120 byte struct at these rates is lunacy, especially when an update may actually impact just a byte or two.

Hugo

link|improve this answer
1  
True, but in this case the reason for using a struct is that doing so is imposed upon the application design by outside constraints (those by the native code's use). Everything else you describe about these objects suggests they should clearly be classes in C# or VB.NET. – Jon Hanna Oct 15 '10 at 14:20
feedback

I have tried making my structs immutable, but for me this resulted in very clumsy lines of code like:

area = new LineSegment(area.X, area.Y + 5, area.Width, area.Height);

instead of a much nicer:

area.Y += 5;

The whole immutable thing seems to me to be a crutch to use since no one can remember that structs behave differently than class references. Because this is not a completely fictitious issue, although it is definitely avoidable, I have decided to use a lowerCamelCase naming convention for structs, which helps you to remember that they behave differently:

vector v = new vector(5, 3);
lineSegment area = new lineSegment(10, 10, 20, 20);

(apparently the site won't color that properly). This works fine for me so far; the only issue I run into is the fact that you can't change the property of a struct, if that struct is itself a property (since you can only get a copy of the struct). To avoid this, I create setter properties for the properties of the struct:

public vector CollisionArea { get { return mCollisionArea; } }
public double CollisionAreaX { get { return mCollisionArea.X; } set { mCollisionArea.X = value; } }
public double CollisionAreaY { get { return mCollisionArea.Y; } set { mCollisionArea.Y = value; } }

This is only slightly annoying, compared to the nightmarish

someObject.CollisionArea = new lineSegment(someObject.CollisionArea.X, someObject.CollisionArea.Y + 5, someObject.CollisionArea.Width, someObject.CollisionArea.Height);

as opposed to

someObject.CollisionAreaY += 5;
link|improve this answer
@0xA3 I am using structs for performance reasons. This is my answer to the question "why are mutable structs evil", which is in summary "In my experience I have not found them to be." – Sahuagin Feb 6 at 12:02
Your comment about having methods which expose struct fields 'one level down' is a good one. Another thing that is sometimes helpful is to have a method which passes a struct by ref to a supplied delegate (it's often useful for the method to accept a second generic ref parameter). A bit clunky, but it works. – supercat Feb 6 at 15:33
feedback

Not all mutability is evil. For instance, Imagine if integers were immutable.

Count++; 

would become:

Count = New Integer(Byte1 = Count.Byte1 + 0x01, Byte2 = Count.Byte2, Byte3 = Count.Byte3, Byte4 = Count.Byte4);

Mutability is tricky and lends itself to some pitfalls, but there's a line you have to draw at how aggressive you want to be in preventing its use on principle alone. That line is for you to decide, given the level of understanding you and your coworkers have.

link|improve this answer
1  
Integers are immutable. If the integers were mutable then changing 5 to 6 would change all 'fives' to be 'sixes'. In 'struct' terms integer value stored in Count variable is not modified. New integer value is created and assigned to Count variable. Look like strings are implemented and you will see how immutable value is different from mutable one. Other example: int a,b; a = 5; b = a; b++; If the integer is mutable the a variable will store 'muted' value 6, but actually a stores 5, b stores 6. Mutable structs are evil because single struct value will change in all variables where it is used. – Artemix Apr 17 at 9:43
@Artemix: If one has an int[1], and uses Buffer.BlockCopy to store a byte into the middle if its first (only) element, what has one done with the integer if not mutated it? Also, I'm not sure what you mean by your last sentence. Mutable structs are useful because struct variables are not affected by mutations performed using other struct variables. – supercat Apr 17 at 16:11
1  
@supercat you're confusing storage with values. The number 5 is immutable. If I store it in a variable, I can change the variable, but then the value of the variable is no longer 5 - it's some other number. That's what value types are all about. A mutable struct is not a value type. Multiple variables can hold references/pointers to the same struct, which means any change to the contents of the struct simultaneously changes the "values" of all those variables. It's as if you did "x=3; y=x; x=4;" and suddenly y was equal to 4. – Mark Reed Apr 18 at 2:12
@MarkReed: If a routine accepts two ref parameters of type Point, it is possible that they will both alias the same variable. When the routine exits, however, both aliases will cease to exist. If, however, a routine has a local variable or a class has a private field, the only time an alias can exist to that is if it is passed as a ref parameter to a routine that has not yet exit. Although "unsafe" code can use pointers to create aliasing in other ways, it is generally not possible for "normal" code to have multiple variables holding references to the same struct. – supercat Apr 18 at 14:53
...only because C# struct assignment happens to be a copy. I was answering the philosophical question, not the implementation-specific one. :) – Mark Reed Apr 19 at 0:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.