Java为强类型语言
-
转换问题:从低到高
byet/short/char➡️int➡️long➡️flat➡️double
(小数运算级别高于整数) -
强制转换
强制转换为(类型)变量
public static void main(String[] args) {
System.out.println ("Hello\nWorld");
System.out.println("===============");
System.out.println((int)23.7);
System.out.println((int)-23.98f);
}
}
注意:在运算时,我们一定要考虑到内存溢出和精确度的问题!!!
- 从低到高会自动转换,从高到低需要强制转换
注意⚠️不能对布尔值进行转换!!!(boolean为判断类型,故无法转换)
不能把对象类型转换为不相同的类型
- 提前转换:
我们可以在计算结果出来前,先进行转换再进行计算
public static void main(String[] args) {
System.out.println ("Hello\nWorld");
System.out.println("===============");
System.out.println((int)23.7);//强制转换
System.out.println((int)-23.98f);//强制转换
System.out.println("=================");
int money = 10_0000_0000;
int years = 20;
int total = money*years; //内存溢出
System.out.println(total);
long total2 = money*years; //还是默认int计算结果
System.out.println(total2);
long total3 = money*((long)years);//正确结果
System.out.println(total3);
}
}
总述:今天开始写IDEA开始越来越快了,也开始能理解抽象的东西了,就是细节一定要做好,比如,在切换中文写注释的时候,再往下写代码总是忘记切换英文,会导致括号爆红,以后一定要注意!