Java - 데이터 타입 종류
1. 정수타입(long, int, short, byte) 타입 숫자 범위 bit byte long -9,223,372,036,854,775,808 ~ 9,223,372,036,854,775,807 64 8 int -2,147,438,648 ~ 2,147,438,647 32 4 short -32,768 ~ 32,767 16 2 byte -128 ~ 127 8 1 public class Datatype { public static void main(String[] args) { // 정수(long, int, short, byte) long l = 64L; // -9,223,372,036,854,775,808 ~ 9,223,372,036,854,775,807 / 64bit / 8byte // long 타입에는..