vote up 1 vote down star
1

I am looking for some efficient way for building a immutable class, just like Java's String class.

flag

Are you looking for a class that's like String functionality-wise? I didn't read your question that way at first, but if you do I'll change my answer with some String-specific examples. – Jorn Jun 19 at 9:47
String is a special citizen in Java. It isn't exactly a primitive type, but you also can't consider it a class. String is the only "class" that overloads the + operator. Adding two Strings will get new a new one. Operator overloading isn't allowed with regular classes. – kgiannakakis Jun 19 at 9:52
Can't consider String a class??? – Tom Hawtin - tackline Jun 19 at 9:57
Does the String class override the + operator? Or does the compiler do the magic for you? – Fortyrunner Jun 19 at 10:00
Yes, not functionality wise. Its behavior should be be same as what an immutable class should do and should not do. – Gaurav Saini Jun 19 at 10:01
show 1 more comment

5 Answers

vote up 7 vote down check
  1. All the fields must be private and preferably final
  2. Ensure the class cannot be overridden - make the class final, or use static factories and keep constructors private
  3. Fields must be populated from the Constructor/Factory
  4. Don't provide any setters for the fields
  5. Watch out for collections. Use Collections.unmodifiable*. Also, collections should contain only immutable Objects
  6. All the getters must provide immutable objects or use defensive copying
  7. Don't provide any methods that change the internal state of the Object.

Tom Hawtin pointed out that final can be optional. String class has a cache hash var that is only assigned when the hash function is called.

link|flag
There's an instance field in the Sun String implementation which is not final. – Tom Hawtin - tackline Jun 19 at 9:58
Nice point. 'final' is not a requirement. The hash var in String is the perfect example. – bruno conde Jun 19 at 10:05
You should also think about making make the class final to ensure that no derived class exposes a protected field. – DR Jun 19 at 10:13
@DR, I agree. Immutable classes should be final. – bruno conde Jun 19 at 10:20
hashCode is not final because it is set lazily. It will have only one real value however so it will appear final. – Peter Lawrey Jun 19 at 21:37
show 1 more comment
vote up 1 vote down

An object is immutable if none of its fields can be modified, so those fields must be final. If you don't want your object to be subclassed, you can make the class itself final as well, just like String is. To easily construct an immutable object with a lot of information, you should look at the Factory Pattern

For more information, see Wikipedia

link|flag
And if he wants no subclasses, he should also make the class itself final. – André Jun 19 at 9:46
good point, I'll add it. – Jorn Jun 19 at 9:47
vote up 1 vote down

If you populate all fields using the constructor and make the fields final - you are partway there.

If the fields use custom types - you may need to make them immutable as well.

Any fields that are collections should use the unmodifiable collections - to be on the safe side.

You need to worry about the object graph!

Any methods on the object need to take care with non-final fields. E.g. String.add creates a new String. If you need to mutate one field - do so via a copy constructor.

Finally make the object final.

link|flag
Would really appreciate if you can explain this with the help of an example. – Gaurav Saini Jun 19 at 10:03
If you haven't already got a copy - get a copy of Effective Java by Josh Bloch. He explains this far better than I ever can! – Fortyrunner Jun 19 at 10:15
Surely, will do it today itself. Thanks – Gaurav Saini Jun 19 at 10:40
vote up 1 vote down

Joshua Bloch tells you how to do it. Have a look at his "Effective Java".

link|flag
vote up 0 vote down

Here is a link to an article on javaranch best article ever read for immutable objects

link|flag

Your Answer

Get an OpenID
or

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