s1==s2,为什么为true;
String s1 = "imooc"; 相当于 String s1=new String("imooc"),右边指定了地址位置,s1指向这个地址;
String s2 = "imooc"; 只是把s2指向了上面的地址,所以地址相同;