JDK7实现switch对String类型的判断_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > JDK7实现switch对String类型的判断

JDK7实现switch对String类型的判断

 2013/8/1 19:08:44  guaaug  程序员俱乐部  我要评论(0)
  • 摘要:使用switch语句判断String类型数据示例如下:publicclassSwitchTest{/***@paramargs*/publicstaticvoidmain(String[]args){Stringname="computer";switch(name){case"notebook":System.out.println("notebook");break;case"computer":System.out.println("computer");break
  • 标签:实现 jdk
使用switch语句判断String类型数据
示例如下:
class="java" name="code">
public class SwitchTest {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		String name = "computer";
		
		switch(name){
		case "notebook":
			System.out.println("notebook");
			break;
		case "computer":
			System.out.println("computer");
			break;
		case "mobile":
			System.out.println("mobile");
			break;
		default:
			System.out.println("nothing");
			break;
		}
	}
}

输出结果:
computer
发表评论
用户名: 匿名