Skip to content

Instantly share code, notes, and snippets.

@uskey512
Created December 22, 2019 08:35
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 uskey512/4ed54bd21a8ff476d4d414abf8fbb4e7 to your computer and use it in GitHub Desktop.
Save uskey512/4ed54bd21a8ff476d4d414abf8fbb4e7 to your computer and use it in GitHub Desktop.
class IntegerCompareTest {
public static void main(String[] args) {
Integer a = 100;
Integer b = 100;
System.out.println(a == b);
a = 200;
b = 200;
System.out.println(a == b);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment