델파이에서 사용되는 정수형 변수들
절름발이 프로그래머/Delphi / 2009. 4. 29. 17:06
타입 |
범위 |
형식 |
Integer |
-2147483648 ~ 2147483647 |
부호를 가진 32bits (4 Bytes) |
Cardinal |
0 ~ 4294967295 |
부호 없는 32bits (4 Bytes) |
|
|
|
ShortInt |
-128 ~ 127 |
부호를 가진 8bits (1 Byte) |
Byte |
0 ~ 255 |
부호 없는 8bits (1 Byte) |
SmallInt |
-32768 ~ 32767 |
부호를 가진 16bits (2 Bytes) |
Word |
0 ~ 65535 |
부호 없는 16bits (2 Bytes) |
LongInt |
-2147483648 ~ 2147483647 |
부호를 가진 32bits (4 Bytes) |
LongWord |
0 ~ 4294967295 |
부호 없는 32bits (4 Bytes) |
Int64 |
-263 ~ 263-1 (-9,223,372,036,854,775,808 ~ 9,223,372,036,854,775,807) |
부호를 가진 64bits (8 Bytes) |
Uint64 |
0 ~ 264-1 (0 ~ 18,446,744,073,709,551,615) |
부호 없는 64bits (8 Bytes) |