I was trying some basic stuff with immutability and trying invariant approaches. Can someone try and break the immutability of ImmutablePerson class having bit diversions from Java spec?
Class to be made immutable:
package com.immutable;
/** COMMENTS HAVE BEEN ADDED TO HELP UNDERSTAND ALL.
* The class should be marked final, so that the subclasses should not be able to subclass it
* and provide or override methods that can change the state of non private object variables.
*/
public class ImmutablePerson {
// In case this field was protected/public in that case the class must be final
// as subclass could change the state.
private Address address ;
// Java spec: Make all fields final and private. is it really required??
private int age ;
/* Java spec: Don't provide "setter" methods — methods that modify fields or objects referred to by fields.
* public void setAddress(Address fAddress) {
this.address = new Address(fAddress.getStreet());
}
public void setAge(int fage) {
this.age = fage;
}*/
// Java spec: Don't allow subclasses to override methods.
// The simplest way to do this is to declare the class as final.
// A more sophisticated approach is to make the constructor private and construct instances
// in factory methods.
public Address getAddress() {
// Java spec: create copies of your internal mutable objects when necessary to avoid returning the
//originals in your methods.
return new Address(address.getStreet());
}
public int getAge() {
return age;
}
public ImmutablePerson(Address fAddress, int fAge) {
super();
//Java spec: If the instance fields include references to mutable objects,
// don't allow those objects to be changed:
// Don't provide methods that modify the mutable objects.
// Don't share references to the mutable objects.
// Never store references to external, mutable objects passed to the constructor;
// if necessary, create copies, and store references to the copies.
this.address = new Address(fAddress.getStreet());
this.age = fAge;
}
/*
public ImmutablePerson() {
super();
}*/
@Override
public String toString() {
return "Age: "+age+", street: "+address.getStreet();
}
}
Mutable class:
package com.immutable;
public class Address {
private String street;
public String getStreet() {
return street;
}
public void setStreet(String street) {
this.street = street;
}
public Address(String street) {
this.street = street;
}
}
Subclass:
package com.immutable.subclass;
import com.immutable.Address;
import com.immutable.ImmutablePerson;
public class ImmutablePersonSubclass extends ImmutablePerson{
/* @Override
public Address getAddress() {
// The variable is not visible so so we really need to make class final
return address;
}*/
/*public void changeState(){
* Incase the address was protected
address = new Address("");
}
*/
}
Thanks All :)
final. [edit/ps] and yes, those field defs should befinalas well, so mr. compiler will help out and keep it all rigorous. – alphazero Jan 22 '12 at 15:02ImmutablePersonclass will throwNullPointerExceptions when using the default constructor – Robin Jan 22 '12 at 15:20