标签:void int java 自动 str short span system class
/* * java数据类型转换分为自动类型转换和强制类型转换 * 1.自动类型转换需要遵循从小到大的规则,即从小范围自动转换到大范围 * 2.强制类型转即从大范围到小范围的转换,转换方法:(需要转换的数据类型)被转换的数据 * 3.强制类型转换会损失数据精度和数据溢出,一般不推荐使用 * 4.byte,short,char类型在进行数据运算时,会将该类型转换为int型 * */ public class ChangeDemo { public static void main(String[] args) { //自动类型转换 int a = 100; float b = a; System.out.println(b); //强制类型转换 double c = 99.5; int d = (int)c; System.out.println(d); //char运算 char e =‘A‘; System.out.println(e+0); } }
标签:void int java 自动 str short span system class
原文地址:https://www.cnblogs.com/vxiao2/p/11474098.html