摘要: public class note03 { public static void main(String[] args) { //数据类型拓展 //1.整数拓展 //进制: 二进制0b 十进制 八进制0 十六进制0x int i1 = 10; int i2 = 015;//八进制 输出为13 int 阅读全文
posted @ 2021-02-18 17:51 stitchkx 阅读(45) 评论(0) 推荐(0) 编辑
摘要: public class note02 { public static void main(String[] args) { //八大基本数据类型 //1.整数 byte num1 = 1; short num2 = 2; int num3 = 3333;//最常用 long num4 = 1561 阅读全文
posted @ 2021-02-18 17:48 stitchkx 阅读(28) 评论(0) 推荐(0) 编辑