Java —— String类的笔试题
摘要:
日常开发中用到最多的Java类就是String了,笔试题中也经常会有它的存在。示例一:String s = new String("abc");String s1 = "abc";String s2 = new String("abc"); System.out.println(s == s1);... 阅读全文
posted @ 2014-05-17 16:45 IceWee 阅读(1348) 评论(0) 推荐(0) 编辑