java基础面试题:switch语句能否作用在byte上,…

2018-06-18 03:45:01来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

package com.swift;

public class Switch_Test {

    public static void main(String[] args) {
        /*
         * switch语句能否作用在byte上,能否作用在long上,能否作用在String上?
         */
        byte zijie = 3;
        System.out.println(zijie);
        long changzheng=3;
        switch (changzheng) {  //cannot switch on a value of type long.
        case 'a':
            System.out.println("this is a .");
            break;
        case 0:
            System.out.println("this is 0 int");
            break;
        case 3:
            System.out.println("this is 0 int");
            break;
        default:
            System.out.println("this is default.");

        }
    }

}

byte short char都是隐性int类型都可以,以及他们的包装类

long 不行

String也可以,要求case中也为String类型

package com.swift;

public class Switch_Test {

    public static void main(String[] args) {
        /*
         * switch语句能否作用在byte上,能否作用在long上,能否作用在String上?
         */
        byte zijie = 3;
        System.out.println(zijie);
        long changzheng=3;
        String str="abc";
        switch (str) {  //cannot switch on a value of type long.
        case "ab":
            System.out.println("this is a .");
            break;
        case "a":
            System.out.println("this is 0 int");
            break;
        case "abc":
            System.out.println("this is abc int");
            break;
        default:
            System.out.println("this is default.");

        }
    }

}

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:java中BigDecimal类的方法和注意事项

下一篇:【Mybatis】使用Mybatis-Generator自动生成entity、dao、mapping