Last active
December 30, 2015 04:19
-
-
Save babanin/3155ec99a3b9a2f5b3ae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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