자바 스터디 노트 #1

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

Leave a Reply

Your email address will not be published. Required fields are marked *