A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

Switch() 括号中能放得数据类型有哪些?String类型的能识别码?

6 个回复

倒序浏览
这贴有点水,switch()只能整数和枚举为参数
回复 使用道具 举报
可以识别字符串的,这些自己试试就知道了
class  Demo
{
        public static void main(String[] args)
        {
                String str="jjs";
                switch (str)
                {
                case "sss":System.out.println("Hello World!");
                case "jjs":System.out.println("orld!");
               
                }
                System.out.println("Hello World!");
        }
}

评分

参与人数 1技术分 +1 收起 理由
格子、 + 1 1.7新特性

查看全部评分

回复 使用道具 举报
一、switch语句中可以使用的数据类型有byte、short、char、int;二、其中常用的是char和int类型;三、string类型不识别
回复 使用道具 举报
可使用string,java7中新增
回复 使用道具 举报
在java7中是能够使用String类型来作为比较条件的,但是实际上比较String时还是比较的数据,比的是String的地址,所以本质其实没变。
回复 使用道具 举报
JDK1.7的话, 可以使用String类型
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马