1字节 的 byte
2字节 的 char
精度 byte<short<char<int<long<float<double
随便打个整数默认为int
随便打个小数默认为double
低精度可以随便转高精度 char a=‘b‘; int b=a
高精度变量赋值给低精度时候必须使用类型转换
int x=(int)322.42 long y=(long)3242.423f int z=(int)34.342d
时间: 2024-12-16 16:42:17
1字节 的 byte
2字节 的 char
精度 byte<short<char<int<long<float<double
随便打个整数默认为int
随便打个小数默认为double
低精度可以随便转高精度 char a=‘b‘; int b=a
高精度变量赋值给低精度时候必须使用类型转换
int x=(int)322.42 long y=(long)3242.423f int z=(int)34.342d