Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 :)

share|improve this question
Make those getters final. [edit/ps] and yes, those field defs should be final as well, so mr. compiler will help out and keep it all rigorous. – alphazero Jan 22 '12 at 15:02
1  
I'm not 100% sure I understand what you're asking, or what all the commented-out code is; are we supposed to pay attention to code inside comments? – Dave Newton Jan 22 '12 at 15:04
Is this homework? – Perception Jan 22 '12 at 15:05
Your ImmutablePerson class will throw NullPointerExceptions when using the default constructor – Robin Jan 22 '12 at 15:20
updated the existing code – Taran Singh Jan 22 '12 at 16:03

closed as not a real question by Kev Jan 22 '12 at 15:47

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

Your ImmutablePerson can still be modified using reflection, but you cannot do much about it. Something along the lines of

ImmutablePerson person = new ImmutablePerson( new Address( "MyStreet" ), 15 );
Field addressField = person.getClass().getField( "address" );
addressField.setAccessible( true );
addressField.set( person, new Address( "MyModifiedStreet" );

will adjust the address of the person. But if somebody is doing this kind of stuff, (s)he shouldn't be surprised to bump into issues later on :-)

share|improve this answer
that can always be the case right even if you have final private modifiers, reflection can always change that and make it immutable for that jvm session – Taran Singh Jan 22 '12 at 16:09
The only way to prevent reflection is to use a security manager - which I'm not sure is worth the effort, just for immutability's sake. By that point, the programmer is already violating your contract with them. – brainzzy Jan 22 '12 at 16:21

Your ImmutablePersonSubclass is breaking the laws of immutability by exposing part of the internal structure in a mutable manner. I can't see that subclass being used though.

The ImmutablePerson combined with it's use of Address, appears to be (from a scanning eye) to be immutable.

There are a number of other code review points (such as superfluous "super()" calls to the Object constructor) but, it seems that you've technically met your objective of creating an immutable class.

share|improve this answer
I didn't follow this, 'You ImmutablePersonSubclass is breaking the laws of immutability by exposing part of the internal structure in a mutable manner.' can you explain you point? – Taran Singh Jan 22 '12 at 16:10
You've since modified your question to make ImmutablePersonSubclass empty, and effectively the same as the ImmutablePerson super class. Before, you were returning the internal Address object, which itself is mutable. The ImmutablePerson's getter creates a new Address object for the return. – brainzzy Jan 22 '12 at 16:23
my point was that of the mutable variable defined in the super class is private, the subclass cannot access it anymore and hence the parent class to be made un-inheritable by subclasses is redundant. the earlier code was just to show that address wasn't accessible. – Taran Singh Jan 22 '12 at 16:38
Ah ok, I assumed it was a typo somewhere as the code as it was original wouldn't compile I think. – brainzzy Jan 22 '12 at 19:19

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