摘要: 1--整数数与long的组合运算 public class Demo{ public static void main(String []args){ int num=2147483647; num+=2L; System.out.println(num); //结果是 -2147483647 ? 阅读全文
posted @ 2019-03-21 06:18 Yanleee 阅读(366) 评论(0) 推荐(0) 编辑