I am looking for some efficient way for building a immutable class, just like Java's String class.
|
1
|
|||||||||||
|
|
|
Tom Hawtin pointed out that |
||||||||||
|
|
|
An object is immutable if none of its fields can be modified, so those fields must be For more information, see Wikipedia |
|||
|
|
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. |
||||||
|
|
|
Joshua Bloch tells you how to do it. Have a look at his "Effective Java". |
||
|
|
|
|
Here is a link to an article on javaranch best article ever read for immutable objects |
||
|
|
