2022年6月12日

浅学之变量自增

摘要: package operator; public class Demo01 { public static void main(String[] args) { //++ 自增 --自减 int a=5; int b=a++; System.out.println(a);//a+1 System.o 阅读全文

posted @ 2022-06-12 23:40 言语说 阅读(26) 评论(0) 推荐(0) 编辑

浅学之溢出问题

摘要: public class Demo05 { public static void main(String[] args) { //操作比较大的数的时候 注意溢出问题 //JDK新特性,数字之间可以用下划线分隔 int money = 10_0000_0000; System.out.println( 阅读全文

posted @ 2022-06-12 20:27 言语说 阅读(29) 评论(0) 推荐(0) 编辑

浅学之强制转换

摘要: public class Demo04 { public static void main(String[] args) { //强制转换 (类型)变量名 高->低 //自动转换 低->高 int i = 128; double b = i; System.out.println(i); Syste 阅读全文

posted @ 2022-06-12 19:56 言语说 阅读(24) 评论(0) 推荐(0) 编辑

浅学之进制

摘要: public class Demo03 { public static void main(String[] args) { //整数:进制 二进制 十进制 八进制 十六进制 int i = 10; int i2 = 010;//八进制 int i3 = 0x10;//十六进制 System.out 阅读全文

posted @ 2022-06-12 19:40 言语说 阅读(25) 评论(0) 推荐(0) 编辑

浅学之你好世界

摘要: 成功输出!!你好 世界 记住简写 主函数psvm public static void main(String[] args) 输出sout System.out.println() 单行注释:// 多行注释:// JavaDoc文档注释:/ */ 快速复制ctrl+D 阅读全文

posted @ 2022-06-12 11:46 言语说 阅读(20) 评论(0) 推荐(0) 编辑

导航