정수형 데이터 타입 표현 범위 데이터 크기 byte -128 ~ 127 1 byte short -32,768 ~ 32,767 2 byte int -2,147,483,648 ~ 2,147,483,647 4 byte long -0,223,372,036,854,775,808 ~ 9,223,372,036,854,775,807 8 byte 다양한 정수형이 존재하는 이유는 큰 숫자가 필요할 때, 더 많은 공간이 필요했기 때문 ✔︎ 정수형 계산 과정에서 long 타입이 포함되어있는 경우를 제외하면, 연산의 경우는 항상 int형이다. public class Number { public static void main(String[] args) { byte byteInteger = 130; short shortIntege..