Skip to content

Instantly share code, notes, and snippets.

@danekja
Created December 11, 2014 22:58
Show Gist options
  • Save danekja/438f54f430321384e262 to your computer and use it in GitHub Desktop.
Save danekja/438f54f430321384e262 to your computer and use it in GitHub Desktop.
class A {
int i;
public A(int i) {
this.i = i;
}
}
A a = new A(4);
A b = new A(4);
a.equals(b); //returns false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment