Skip to content

Instantly share code, notes, and snippets.

@dai0304
Created May 23, 2012 03:04
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 dai0304/2773033 to your computer and use it in GitHub Desktop.
Save dai0304/2773033 to your computer and use it in GitHub Desktop.
public final class Immutable {
private final String message;
public Mutable(String message) {
this.message = message;
}
public void hello() {
System.out.println(message);
}
}
public class Mutable {
private String message;
public Mutable(String message) {
this.message = message;
}
public void hello() {
System.out.println(message);
}
public void setMessage(String message) {
this.message = message;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment