Skip to content

Instantly share code, notes, and snippets.

@konsolas
konsolas / DataTypes.java
Created October 30, 2015 21:27
Data Types
//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;