Java:Java7新语法
switch中使用字符串
JDK7中允许在switch中使用字符串。但实际在内部实现时,还是通过转换为数字实现的。
public int switchFunc(String name){
switch(name){
case "Riguz":
return 1;
case ".Com":
return -1;
default:
break;
}
return 0;
}
欢迎来到Riguz的小站!这是一个私人wiki,用来记录一些我的笔记。
JDK7中允许在switch中使用字符串。但实际在内部实现时,还是通过转换为数字实现的。
public int switchFunc(String name){
switch(name){
case "Riguz":
return 1;
case ".Com":
return -1;
default:
break;
}
return 0;
}