摘要: http://faqs.javabeat.nethttp://www.techinterviews.comhttp://www.allapplabs.com/interview_questions/java_interview_questions.htmhttp://www.interview-questions-java.com/http://javapapers.com/http://www.java-interview.com/http://www.interviewjava.com/http://www.j2eequestions.com/http://booleandreams.wo 阅读全文
posted @ 2011-10-29 19:55 qingyezhu 阅读(104) 评论(0) 推荐(0)
摘要: 1Which of the following fragments might cause errors? (5%) A. String s = “Gone with the wind”; String t = ” good “; String k = s + t; 可以,String重载了+ 运算符 B. String s = “Gone with the wind”; String t; t = s[3] + “one”; 不可以,s[3]表示的是字符串数组s,而这里是字符串s。 C. String s = “Gone with the wind”; String st... 阅读全文
posted @ 2011-10-29 00:02 qingyezhu 阅读(316) 评论(0) 推荐(0)