码迷,mamicode.com
首页 > 其他好文 > 详细

switch case 的值

时间:2014-09-01 19:30:43      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   ar   div   log   sp   on   

 switch(value), 这个value只能使用能够转int类型的类型。如 char String int  enum >>>  Only convertible int values, strings or enum variables are permitted

 case 必须和value的类型一致。

 

 

public class Test {
    public static final String x = "xx";
    
    public static void main(String [] args) {
        String value = "123";
        switch(value){
            case x : System.out.println("a");
        }
    }
}

 

switch case 的值

标签:style   blog   color   使用   ar   div   log   sp   on   

原文地址:http://www.cnblogs.com/shouwangzhe-/p/3949756.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!