Kotlin - 데이터 타입 (숫자, Boolean)
출처 : https://kotlinlang.org/docs/numbers.html, https://kotlinlang.org/docs/unsigned-integer-types.html Numbers | Kotlin kotlinlang.org 정수 타입 (Integer types) Type Size (bits) 최소 값 최대 값 Byte 8 -128 127 Short 16 -32768 32767 Int 32 -2,147,483,648 (-2^31) 2,147,483,647 (2^31 - 1) Long 64 -9,223,372,036,854,775,808 (-2^63) 9,223,372,036,854,775,807 (2^63 - 1) 타입을 명시적으로 선언 하지 않으면 컴파일러가 해당 숫자를 수용 할 수 있..
더보기