上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 29 下一页
摘要: 1.whille循环格式: package com.itheima.loop; public class While1 { public static void main(String[] args) { int i=0;//初始化语句 while(i<5){//循环条件 System.out.pr 阅读全文
posted @ 2023-11-29 16:20 小彭先森 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 1.for循环: 2. 3.for循环案例 package com.itheima.loop; public class For2 { public static void main(String[] args) { for (int i = 0; i <=100 ; i++) { System.o 阅读全文
posted @ 2023-11-29 16:00 小彭先森 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 一.1.顺序结构 2.分支结构 3.循环结构 二.if,switch分支 1.if分支: 2.switch 3.switch使用时注意事项: package com.itheima.Branch; public class Branch3 { public static void main(Stri 阅读全文
posted @ 2023-11-28 16:53 小彭先森 阅读(13) 评论(0) 推荐(0) 编辑
摘要: package com.itheima.scanner; import java.util.Scanner; public class ScannerDemo1 { public static void main(String[] args) { //1.导包 Scanner sc=new Scan 阅读全文
posted @ 2023-11-27 20:12 小彭先森 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 三元运算符介绍: 格式:条件表达式?值1:值2; 执行流程:首先计算关系表达式的值,如果值为true,返回值1,如果值为false,返回值2 代码: package com.itheima.operator; public class Operator6 { public static void m 阅读全文
posted @ 2023-11-27 20:10 小彭先森 阅读(55) 评论(0) 推荐(0) 编辑
摘要: &:前后均为true,结果才为true |:只要多个条件中有一个为true,结果就是true ^(逻辑异或):前后结果相同时返回false,结果不同时返回true &&(短路与):左边为false,右边则不执行 ||(短路或):左边为true,右边就不执行 阅读全文
posted @ 2023-11-27 19:43 小彭先森 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 判断相当用“==”双等于号 package com.itheima.operator;public class Qperator4 { public static void main(String[] args) { int a=10; int b=5; System.out.println(a=b 阅读全文
posted @ 2023-11-27 19:20 小彭先森 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 扩展的赋值运算符隐含了强制类型转换 package com.itheima.operator; public class Qperator3 { public static void main(String[] args) { //目标:掌握扩展赋值运算符的使用 //+= //需求类似于收红包 do 阅读全文
posted @ 2023-11-27 09:24 小彭先森 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 枚举的好处以及与常量类的区别 1)枚举型可以直接与数据库打交道,我通常使用varchar类型存储,对应的是枚举的常量名。(数据库中好像也有枚举类型,不过也没用过) 2) switch语句支持枚举型,当switch使用int、String类型时,由于值的不稳定性往往会有越界的现象,对于这个的处理往往只 阅读全文
posted @ 2023-11-26 20:57 小彭先森 阅读(59) 评论(0) 推荐(0) 编辑
摘要: ++与--只能操作变量不能操作字面量 注意事项 package com.itheima.operator;public class Operator2 { public static void main(String[] args) { int i = 1; int res = ++i;//放在变量 阅读全文
posted @ 2023-11-16 09:10 小彭先森 阅读(5) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 29 下一页