Skip to content

Instantly share code, notes, and snippets.

Created September 26, 2013 00:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/6707963 to your computer and use it in GitHub Desktop.
Save anonymous/6707963 to your computer and use it in GitHub Desktop.
I asked the interviewee to write me an example of an immutable class. Here was his answer.
public class ImmutableExample {
private int i;
public ImmutableExample ( int i ) {
this.i = i;
}
public int get() {
return this.i;
}
public int set() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment