This file contains 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
//http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html | |
byte byteMin = -128; | |
byte byteMax = 127; | |
short shortMin = -32768; | |
short shortMax = 32767; | |
int intMin = -2147483648; | |
int intMax = 2147483647; |