JDK7发布有一段时间了,一直没有时间体验下,周末搭了环境体验下,感触颇多。
JDK7下载:http://jdk7.java.net/download.html
Eclipse 3.8 M1下载:http://www.eclipse.org/downloads/download.php?file=/eclipse/downloads/drops/S-3.8M1-201108031800/eclipse-SDK-3.8M1-win32.zip
话说JDK7 switch终于支持String了(实在不明白为什么到7才支持),于是写了简单的例子测测:
public class First { public static String change(String str) { String returnStr = ""; switch (str) { case "yes": { System.out.println("yes"); break; } case "no": { System.out.println("no"); break; } default:{ System.out.println("other"); } } return returnStr; } public static void main(String[] args) { First.change("yes"); First.change("no"); First.change("hello"); } }
怀着无比崇敬的心情打开编译后的文件想看看是怎么实现的,看完只想呵呵一笑!
First.class
public class First { public First() { } public static String change(String str) { String returnStr; label0: { returnStr = ""; String s; switch((s = str).hashCode()) { default: break; case 3521: if(!s.equals("no")) break; System.out.println("no"); break label0; case 119527: if(s.equals("yes")) { System.out.println("yes"); break label0; } break; } System.out.println("other"); } return returnStr; } public static void main(String args[]) { change("yes"); change("no"); change("hello"); } }
就一个如此简单换汤不换药的做法却需要经历几个版本才得以实现!
Java,你还会幸福么?Oracle后妈就是这样待你的么?
实现没有太多激情去测试其他的新特性了,在JDK7中已经隐隐约约看到了一个大大的$符号!