摘要: 1. 下载JDK(附上链接)https://www.oracle.com/cn/java/technologies/javase/javase-jdk8-downloads.html 根据自己的电脑来,我的是Windows x64位,例如,linux的就选择对应位数的下载。 选中即可,意思大概是(我 阅读全文
posted @ 2020-12-08 06:05 JadeXu07 阅读(954) 评论(0) 推荐(0)
摘要: 强制转换数据溢出情况 举例: int转byte int exampleB2 = 129; //129往前移两位得-127 System.out.println((byte)exampleB2); //-127 int exampleB3 = -129; //-129往前移一位得127 System. 阅读全文
posted @ 2020-12-08 05:12 JadeXu07 阅读(285) 评论(0) 推荐(0)