vote up 3 vote down star
1

I like the immutability concept but sometimes I wonder, when an application isn't meant to be parallel, should one avoid making things immutable?

When an application isn't multi-threaded, you aren't plagued by shared state problems, right?

Or is immutability a concept like OOP that you either use all the way or not? Excluding the cases when something shouldn't be immutable based on use/performance, etc.

I am faced with this question when writing an application for myself, that is moderately big (maybe like 1-2k lines).

flag

56% accept rate
4  
Immutable state is good for multithreaded applications because it is easier to reason about the correctness of immutable state in multithreaded scenarios. But it is ALSO easier to reason about correctness of immutable state in single-threaded scenarios! It is just plain easier to reason about things that do not change than it is to reason about things that do change. – Eric Lippert Jun 22 at 22:11
@Eric: lol. . – Joan Venge Jun 22 at 22:18

2 Answers

vote up 5 vote down check

I love immutability because it means I don't have to trust other peoples code not to mess around with objects I expect to stay the same.

When you pass an object off to another component such as a List<T>, you are at the mercy of what that component does. This is especially important when you return collections as properties.

public class Foo { 
  private List<Bar> _barList;
  public ICollection<Bar> BarList { get return _barList; } 
}

There's nothing stopping a consumer of this class from clearing the collection out from under me. Even switching the return type to IEnumerable<Bar> is not entirely safe. There's nothing stopping some piece of badly written code from casting this back to List<T> and calling .Clear().

However if I really want the collection to stay consistent I could rewrite it as followis

public class Foo {
  private ImmutableCollection<Bar> _barList;
  public ImmutableCollection<Bar> BarList { get { return _barList; } }
}

Now I'm safe from having to trust other code from using my class incorrectly. They can't mess it up.

link|flag
Is ImmutableCollection in BCL? Or just an example? – Joan Venge Jun 22 at 22:15
1  
@Joan, it's from a library that I own. It's available at code.msdn.microsoft.com/BclExtras – JaredPar Jun 22 at 22:50
Thanks Jared, will download it. – Joan Venge Jun 22 at 23:39
You could also return List<T>.AsReadOnly(), which is built into the BCL. – Joe White Jun 23 at 11:52
1  
@Joan, there's ReadOnlyCollection<T> in the framework if you don't want to roll your own. If when you construct it you throw away the List<T> you used to construct it, it will be immutable since there won't be any references around to the writeable internals of it. I agree with Jared that this can be a "gotcha" if you aren't on the look-out, though, and encapsulating this "create and throw away the List<T>" business could be useful. – Doug McClean Sep 29 at 20:15
show 1 more comment
vote up 4 vote down

I like the advantage from immutability that you need to validate it only once - at creation of object. That's a huge bonus actually.

link|flag
4  
Good point. This idea also has security implications. Suppose you pass a mutable object X to method Foo. Foo checks X to ensure that X is a valid argument to Foo, throws if it is not, and then makes some security-sensitive operation based on X. If a hostile caller can mutate X on another thread after the argument check, the argument check can effectively be bypassed! This is one reason why strings are immutable in .NET -- you want to be able to say "open this file", do a security check on that path, and know that the path string will not change between the check and the file open. – Eric Lippert Jun 23 at 5:00
To do this, one is to use static factory pattern ... synchronized. – Nicholas Jordan Oct 20 at 1:18

Your Answer

Get an OpenID
or

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