vote up 8 vote down star
5

The advantages of immutable objects in Java seem clear:

  • consistent state
  • automatic thread safety
  • simplicity

You can favour immutability by using private final fields and constructor injection.

But, what are the downsides to favouring immutable objects in Java?

i.e.

  • incompatibility with ORM or web presentation tools?
  • Inflexible design?
  • Implementation complexities?

Is it possible to design a large-scale system (deep object graph) that predominately uses immutable objects?

flag

10 Answers

vote up 2 vote down check

But, what are the downsides to favouring immutable objects in Java? incompatibility with ORM or web presentation tools?

Reflection based frameworks are complicated by immutable objects since they requires constructor injection:

  • there are no default arguments in Java, which forces us to ALWAYS provide all of the necessary dependencies
  • constructor overriding can be messy
  • constructor argument names are not usually available through reflection, which forces us to depend on argument order for dependency resolution

Implementation complexities?

Creating immutable objects is still a boring task; the compiler should take care of the implementation details, as in groovy

Is it possible to design a large-scale system (deep object graph) that predominately uses immutable objects?

definitely yes; immutable objects makes great building blocks for other objects (they favor composition) since it's much easier to maintain the invariant of a complex object when you can rely on its immutable components. The only true downside to me is about creating many temporany objects (e.g. String concat was a problem in the past).

link|flag
vote up -2 vote down

My biggest worry with immutable data structures is how to save/reconstitute them. That is, if a class has final fields, I can't instantiate it and then set its fields.

link|flag
I don't see what the problem is. – Tom Hawtin - tackline Apr 15 at 21:58
Say you have a complex object structure you've saved to disk and are ow reloading. If an object cannot be created without setting its variables, you end up with complex constraints on the order in which you must create the objects, because eg object A is referenced by B is referenced by C... – Zarkonnen Apr 15 at 22:58
vote up 1 vote down

The problem in java is that one has to live with all those objects, where the class looks like:

class Mutable {
    State1 f1;
    MoreState f2;
    void doSomething() {  // mutate the state, but don't document it }
    void doSomethingElse()  /// mutate the state heavily, do not mention in doc
}

(Note the missing Cloneable interface).

The problem with the garbage collector is not such a big one nowadays. The VM's are happy with short living objects.

Advances in Compiler/JIT technology will make it possible, sooner or later, to optimize intermediate temporary object creation away. For example:

BigInteger  three =, two =, i1 = ...;
BigInteger  i2 = i1.mul(three).div(two);

The JIT could notice that the intermediate object i1.mul(three) can be used for the end result and call a variant of the div method that works on a mutable accumulator.

link|flag
vote up 2 vote down

If you go for mutability then you will find that whenever you need to call a method that you don't want to have the object change, or you need to return an object that is part of the internal state, you need to make a defensive copy.

If you really look at programs that make use of mutible objects you will find that they are prone to "attack" by modifying:

  • objects passed to constructors
  • objects passed to methods
  • objects returned from methods.

The issue doesn't show up very often because most programs don't change the data (they are in reality immutable by virtue of them never changing).

I personally make every thing I possibly can final. I probably have 90%-95% of all variables (parameters, local, instance, static, exceptions, etc...) marked as final. There are some cases where it has to be mutable, but the vast majority of cases it does not.

I think it might depend on your focus. If you are writing libraries for 3rd parties to use you think about this much more than if you are writing an application that only you (or your team) will maintain.

I find that you can write large scale applications using immutable objects for the majority of the system without too much pain.

link|flag
vote up 0 vote down

With an immutable object, if the value needs to be changed, then it must be replaced with a new instance. Depending on the lifecycle of the object, replacing it with a different instance can potentially increase the tenured (long) garbage collection time. This becomes more critical if the object is kept around in memory long enough to be placed in the tenured generation.

link|flag
vote up 0 vote down

Probably the biggest cost of using immutabile objects in Java is that future developers won't be expecting it or used to that style. Expect to either document heavily or watch alot of your objects spawn mutable peers over time.

That being said, the only real technical reason I can think of to avoid immutable objects is GC churn. For most applications, I don't think this is a compelling reason to avoid them.

The biggest thing I've ever done with a ~90% immutable objects was a toy scheme-esque interpreter, so its certainly possible to do complex Java projects.

link|flag
vote up 0 vote down

Immutability, as every other design pattern, should only be used when you need it. You give the example of thread safety: In a highly threaded application, you could favor immutability over the added expense of making it thread safe yourself. However, if your design requires objects to be mutable, don't go out of your way to make them immutable, just because "it's a design pattern".

As for your graph, you could choose to make your nodes immutable and let another class take care of the connections between them, or you could make a mutable node that takes care of its own children and has an immutable value class.

link|flag
Please leave a comment with reason when down voting... – Jorn Jul 12 at 16:07
I strongly object to the notion that immutability "should only be used when you need it". As far as I'm concerned, it should be the other way round: make your classes mutable only when you need it. In the end, mutability is just as much a design pattern as immutability, despite the fact that Java makes mutability easier than immutability. – jqno Aug 15 at 8:30
vote up 0 vote down

The concept of immutable types is somewhat uncommon for people used to imperative programming styles. However, for many situations immutability has serious advantages, you named the most important ones already.

There are good ways to implement immutable balanced trees, queues, stacks, dequeues and other data structures. And in fact many modern programming languages / frameworks only support immutable strings because of their advantages and sometimes also other objects.

link|flag
vote up 2 vote down

You pretty much answered your own question. The JavaBean specification, I don't believe, mentions anything about immutability, yet JavaBeans are the bread and butter of many Java frameworks.

link|flag
nothing in the beans spec precludes immutability though (at least nothing I can think of). – TofuBeer Apr 15 at 16:17
I don't think JavaBeans makes a particularly high recommendation. – Tom Hawtin - tackline Apr 15 at 17:24
vote up 4 vote down

With immutability, any time you need to modify data, you need to create a new object. This can be expensive.

Imagine needing to modify one bit in an object that consumes several megabytes of memory: you would need to instantiate a whole new object, allocate memory, etc. If you need to do this many times, mutability becomes very attractive.

link|flag
You would probably discard the older object in favor of the newly created one. Therefore over the lifetime of your app, the net cost is zero. – Martin OConnor Apr 15 at 15:47
Object creation can be expensive but usually is not. – Eddie Apr 15 at 15:48
There are algorithms for this. Open on my desk is a copy of "Purely Functional Data Structures". Worth a read. – Tom Hawtin - tackline Apr 15 at 15:50
if your object is truly immutable (deeply-nested) you will want to come up with some scheme of component reusage if it is really some megabytes large. – Andreas Petersson Apr 15 at 15:54
Defensive copying due to mutability can also cause this. – parkr Apr 15 at 15:57
show 2 more comments

Your Answer

Get an OpenID
or

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