switch多选择结构
-
多选择结构还有一个实现方式就是switch case语句
-
switch case语句判断一个变量与一系列值中某个值是否相等,每个值称为一个分支。
-
switch语句中的变量类型可以是:
-
byte、short、int或者char
-
从Java SE 7开始
-
switch 支持字符串 String 类型了
-
同时case标签必须为字符串常量或字面量
switch(expression){
case value:
//语句
break;//可选
case value:
//语句
break;//可选
//你可以有任意数量的case语句
default://可选
//语句
} -
public static void main(String[] args) {
//case穿透 //switch 匹配一个具体的值
char grade = 'B';
switch (grade){
case 'A':
System.out.println("优秀");
break;//可选
case 'B':
System.out.println("良好");
break;//可选
case 'C':
System.out.println("及格");
break;//可选
case 'D':
System.out.println("再接再厉");
break;//可选
case 'E':
System.out.println("挂科");
break;//可选
default:
System.out.println("未知等级");
}
}
//输出结果
良好
public static void main(String[] args) {
String name = "曹炎兵";
//JDK7的新特性,表达式结果可以是字符串!!!
//字符的本质还是数字
switch (name){
case "曹炎兵":
System.out.println("这条街我说了算!");
break;
case "曹玄亮":
System.out.println("下辈子你当哥哥,我当弟弟!");
break;
default:
System.out.println("你找错人了!");
}
}
循环结构
-
while循环
-
do...while循环
-
for循环
-
在Java5中引入了一种主要用于数组的增强型for循环
while循环
-
while是最基本的循环,它的结构为:
while(布尔表达式) {
//循环内容
}
-
只要布尔表达式为true,循环就会一直执行下去。
-
我们大多数情况是会让循环停止下来的,我们需要一个让表达式失效的方式来结束循环。
-
少部分情况需要循环一直执行,比如服务器的请求响应监听等。
-
循环条件一直为true就会造成无限循环【死循环】,我们正常的业务编程中应该尽量避免死循环。会影响程序性能或者造成程序卡死崩溃!
-
思考:计算1+2+3+...+10=?
public static void main(String[] args) {
//输出1~100
int i = 0;
while (i < 100) {
i++;
System.out.println(i);
}
}
public static void main(String[] args) {
//死循环
while (true){
//等待客户端连接
//定时检查
//...
}
}
public static void main(String[] args) {
//计算1+2+3+...+100=?
//高斯的故事
int i = 0;
int sum = 0;
while (i <= 100) {
sum = sum + i;
i++;
}
System.out.println(sum);
}
//输出结果
5050
do...while循环
对于while语句而言,如果不满足条件,则不能进入循环。但有时候我们需要即使不满足条件,也至少执行一次。
do...while 循环和while循环相似,不同的是,do...while循环至少执行一次。
do{
//代码语句
}while(布尔表达式);
while和do-while的区别:
-
while先判断后执行。do-while是先执行后判断!
-
do-while总是保证循环体会被至少执行一次!这是他们的主要差别。
public static void main(String[] args) {
int i = 0;
int sum = 0;
do {
sum = sum + i;
i++;
}while (i <= 100);
System.out.println(sum);
}
//输出结果
5050
public static void main(String[] args) {标签:case,System,while,switch,循环,println,out,结构 From: https://www.cnblogs.com/cuijiuba/p/16999135.html
int a = 0;
while (a < 0) {
System.out.println(a);
a++;
}
System.out.println("====================");
do {
System.out.println(a);
a++;
}while (a < 0);
}
//输出结果
====================
0
Process finished with exit code 0