坚强啤酒

文章
3
资源
0
加入时间
2年11月11天

3.16 2进制计算数据溢出

//数据溢出public class OverflowDwmo{ public static void main(String[] args) { int intmax= 2147483647; intmax = intmax+1; System.out.println(intmax); /*溢出 二进制0b 01111111_11111111_111111...