Skip to content

Instantly share code, notes, and snippets.

@dangnhdev
Created March 8, 2016 15:46
Show Gist options
  • Save dangnhdev/b62e9fb18e1702595b0b to your computer and use it in GitHub Desktop.
Save dangnhdev/b62e9fb18e1702595b0b to your computer and use it in GitHub Desktop.
public class Test {
public static void main(String[] args) {
Person p1 = new Person(0, "Person1");
Person p2 = new Person(0, "Person2");
System.out.println(p1.hashCode() == p2.hashCode());
System.out.println(p2.equals(p1));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment