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

switch语句相关

时间:2017-08-24 21:32:20      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:enum   blog   语句   val   str   相关   bsp   switch语句   style   

Cannot switch on a value of type long. Only convertible int values, strings or enum variables are permitted

switch无法作用于long类型的值。 只允许可转换的int值,字符串或枚举变量

String i = "2";
switch (i){
   case "1":
       System.out.println(1);
   case "2":
       System.out.println(2);
}    

 

switch语句相关

标签:enum   blog   语句   val   str   相关   bsp   switch语句   style   

原文地址:http://www.cnblogs.com/lxcmyf/p/7425038.html

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