这是我学JAVA以来,收藏的一点小方法。或许会对一些初学者有点用。
来混技术分进黑马啦。如果觉得可以,各位打赏一下技术分给小弟吧。
代码:
public void switchCaseStr() {
Map<String,Integer> map=new HashMap<String, Integer>();
map.put("hello", 1);
map.put("haha", 2);
map.put("yes", 3);
map.put("in", 4);
String str="hello";
switch(map.get(str))
{
case 3:
System.out.println("yes");
break;
case 1:
System.out.println("hello");
break;
case 2:
System.out.println("haha");
break;
case 4:
System.out.println("in");
break;
default:
System.out.println("default");
}
}
|