亲宝软件园·资讯

展开

switch多选择结构、循环结构示例详解

崔九八 人气:0

switch多选择结构

switch语句中的变量类型可以是:

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循环

while(布尔表达式) {
    //循环内容
}
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的区别:

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) {
        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

每日Java面试题

1.static关键字有什么用?

static代表"静态"的意思,可以用来修饰:

使用示例代码如下:

public class Test1 {
​
    static {
        System.out.println("静态代码块");
    }
    
    static class Test2 {
        
    }
    
    private static int id = 0;
    
    public static void staticMethod() {
        
    }
}

2.static变量和普通变量的区别?

静态变量属于类的变量,普通变量属于对象的变量。

存储区域不同

静态变量存储在方法区的静态区,普通变量存储在堆区。

另外:JDK7及以上,静态变量存储在其对应的Class对象中,而Class对象和其他普通对象一样,都存储在堆中的。

静态变量是随着类的加载而加载,随着类的消失而消失。

普通变量随着对象的加载而加载,随着对象的消失而消失

静态变量只能通过类名、对象调用,普通变量只能通过对象调用。

3.Java中final、finally、finalize的区别与用法

final是一个修饰符也是一个关键字

finalize()是Object类的protected方法,子类可以覆盖该方法以实现资源清理工作。

GC在回收对象之前都会调用该方法

finalize()方法是存在很多问题的:

加载全部内容

相关教程
猜你喜欢
用户评论