Skip to content

Instantly share code, notes, and snippets.

@singhrahuldps
Created April 29, 2020 14:42
Show Gist options
  • Select an option

  • Save singhrahuldps/425653e7645490a8d909127e7d909303 to your computer and use it in GitHub Desktop.

Select an option

Save singhrahuldps/425653e7645490a8d909127e7d909303 to your computer and use it in GitHub Desktop.
Integer integer = null;
System.out.println(integer);
// Integer objects are immutable and should be
// initialized using the valueOf method
integer = Integer.valueOf(10);
System.out.println(integer);
System.out.println(integer.equals(11));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment