Skip to content

Instantly share code, notes, and snippets.

@jklingsporn
Created May 8, 2017 15:42
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 jklingsporn/b88184b1263b57d87d27e6c717f37ae7 to your computer and use it in GitHub Desktop.
Save jklingsporn/b88184b1263b57d87d27e6c717f37ae7 to your computer and use it in GitHub Desktop.
Integer i = 128;
Integer j = 128;
boolean same = (i == j); //false
boolean equal = i.equals(j); //true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment