C# | golang | 范围 |
sbyte | int8 | -128->127 |
short | int16 | -32768->32767 |
int | int32 | -2 147 483 648->2 147 483 647 |
long | int64 | -9 223 372 036 854 775 808->9 223 372 036 854 775 807 |
byte | unit8或byte | 0->255 |
ushort | unit16 | 0->65535 |
uint | unit32 | 0->4 294 967 295 |
ulong | unit64 | 0->18 446 744 073 709 551 615 |
decimal | ||
float | float32 | -3.402...×1038->3.402...×1038 |
bool | bool | true或false |
char | ||
string | string |
上面仅是部分基本类型。
时间: 2024-11-07 19:15:59