Skip to content

Instantly share code, notes, and snippets.

@babanin
Last active December 30, 2015 04:19
Show Gist options
  • Select an option

  • Save babanin/3155ec99a3b9a2f5b3ae to your computer and use it in GitHub Desktop.

Select an option

Save babanin/3155ec99a3b9a2f5b3ae to your computer and use it in GitHub Desktop.
Integer x = 127;
System.out.println(x); // 1
System.out.println(127); // 2
System.out.println((Integer) 127); // 3
System.out.println(new Integer(127)); // 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment