String a=new String("Hello Java!"); 
String b=new String("Hello Java!"); 
if(a == b) System.out.println("true");
为什么程序执行不成功?