java switch(表达式)中表达式的类型都可以是哪些类型?

java switch(表达式)中表达式的类型都可以是哪些类型?


富国沪深
浏览 2054回答 3
3回答

叮当猫咪

java中的switch选择结构可以使用数据类型的数据:1, int2,char3,byte4,short5,枚举6, String:&nbsp;PS:对JDK版本有要求,必须为1.7及以上版本代码示例:public class Test_char {public static void main(String[] args) {char c = '二';switch(c){case '一':System.out.println("1.char类型");break;case '二':System.out.println("2.char类型");break;}}}扩展资料switch表达式代码:#include<stdio.h>int main(){double score;printf("请输入分数:\n");scanf("%lf",&score);switch((int)(score/10)) &nbsp; &nbsp;//switch((int)score/10)出现严重错误{ &nbsp; &nbsp;case 10: &nbsp; &nbsp;case 9:printf("A(最好)\n");break; &nbsp; &nbsp;case 8:printf("B(优秀)\n");break; &nbsp; &nbsp;case 7:printf("C(良好)\n");break; &nbsp; &nbsp;case 6:printf("D(及格)\n");break; &nbsp; &nbsp;case 5:case 4:case 3:case 2:case 1:case 0:printf("E(不及格)\n");break;default:printf("Error!\n");}}&nbsp;

慕容森

在java中switch后的表达式的类型只能为以下几种:byte、short、char、int(在Java1.6中是这样),在java1.7后支持了对string的判断。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java