public class Demo05 {
public static void main(String[] args) {
// 操作比较大的数字的时候注意溢出问题
// JDK7 新特性,数字中间加下划线不会被运行
int money = 10_0000_0000;
int years = 20;
int total = moneyyears;
long total2 = moneyyears;
System.out.println(total);//-1474836480 计算的时候溢出了
System.out.println(total2);//默认是int,转换之前就已经存在问题
long total3 = money*((long)years);//先把一个数据转换成long
System.out.println(total3);
// 注意“L”的大小写, 养成习惯 long 的后缀全部用大写的L
}
}