摘要: // ... literals are interned by the compiler // and thus refer to the same object String s1 = "abcd"; String s2 = "abcd"; s1 == s2; // --> true // ... 阅读全文
posted @ 2016-01-11 17:10 Treant 阅读(1463) 评论(4) 推荐(1)