Java Data Types
// Integer types
byte, 1 byte
short, 2 bytes
int, 4 bytes
long, 8 bytes
// Floating point types
float, 4 bytes
double, 8 bytes
// Bool
boolean, 1 bit
// Char
char, 2 bytes
// Integer types
byte, 1 byte
short, 2 bytes
int, 4 bytes
long, 8 bytes
// Floating point types
float, 4 bytes
double, 8 bytes
// Bool
boolean, 1 bit
// Char
char, 2 bytes
You must be logged in to post a comment.