2016年4月8日
摘要: String s1 = new String("hello"); String s2 = new String("hello"); System.out.println(s1 == s2);// false System.out.println(s1.equals(s2));// true Stri 阅读全文
posted @ 2016-04-08 19:48 doAction 阅读(231) 评论(0) 推荐(0) 编辑