由于String对象是不可改变的
为了节省空间String s1 = "mm"时,"mm"形式的字符串将保存在常量池里共享
所以s2和s1将指向同意对象所以s1==s2
而String s1 = new String("mm");时"mm"将被复制。