Skip to content

Instantly share code, notes, and snippets.

@jklingsporn
Last active May 8, 2017 15:42
Show Gist options
  • Save jklingsporn/15a7c61a1fc3b81d64837765574629e1 to your computer and use it in GitHub Desktop.
Save jklingsporn/15a7c61a1fc3b81d64837765574629e1 to your computer and use it in GitHub Desktop.
intcache
Integer i = 127;
Integer j = 127;
boolean same = (i == j); //true
boolean equal = i.equals(j); //true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment