data type 종류&크기
Java의 data type 종류 & 크기Java has eight primitive types of data: byte, short, int, long, char, float, double, and boolean.These can be put in four groups:정수Integers includes byte, short, int, and long실수Floating-point numbers includes float and double문자Characters includes char, like letters and numbers.논리Boolean includes boolean representing true/false values.Type Explanation int A 32-bit (4-byte) ..