摘要: public class Demo03 { public static void main(String[] args) { //整数拓展 进制 二进制0b 八进制 十进制0 十六进制0x int i = 10; int i2 = 010;//八进制 int i3 = 0x10;//十六进制0x 0 阅读全文
posted @ 2021-12-02 21:50 一切。最好的安排 阅读(21) 评论(0) 推荐(0)
摘要: public class Demo02 { public static void main(String[] args) { //八大基本数据类型++++++++++++++++++++++++++++++ int num = 147258; byte num2 = 127; short num3 阅读全文
posted @ 2021-12-02 21:49 一切。最好的安排 阅读(29) 评论(0) 推荐(0)