摘要:
1、算术操作符整数除法会直接去掉结果的小数位,而不是四舍五入地处理结果。1 int a=3, b;2 b = a/2;3 System.out.println(b);4 //the output is 1byte、char、short参加运算时会被提升为int。+=、-+、*=、/=在左操作数为byte、char、short类型时,运算前提升为int,赋值时则被截取。byte b = 20;//byte a = b + 2; //编译错误:Type mismatch: cannot convert from int to bytebyte a = (byte) (b + 2);Syste... 阅读全文