类型标识符 | 范围(数学公式表达) | 范围(十进制数表达) |
---|---|---|
int8 | [-math.pow(2, 7), math.pow(2, 7)-1] | [-128, 127] |
int16 | [-math.pow(2,15), math.pow(2,15)-1] | [-32768, 32767] |
int32 | [-math.pow(2,31), math.pow(2,31)-1] | [-2147483648, 2147483647] |
int64 | [-math.pow(2,63), math.pow(2,63)-1] | [-9223372036854775808, 9223372036854775807] |
类型标识符 | 范围(数学公式表达) | 范围(十进制数表达) |
---|---|---|
uint8 | [0, math.pow(2, 8)-1] | [0, 255] |
uint16 | [0, math.pow(2,16)-1] | [0, 65535] |
uint32 | [0, math.pow(2,32)-1] | [0, 4294967295] |
uint64 | [0, math.pow(2,64)-1] | [0, 18446744073709551615] |