标题: String盲点求释疑。 [打印本页] 作者: 胡建彪 时间: 2012-10-27 16:36 标题: String盲点求释疑。 Which of the following fragments might cause errors? (5%)
A. String s = “Gone with the wind”;
String t = ” good “;
String k = s + t;B. String s = “Gone with the wind”;
String t;
t = s[3] + “one”;
C. String s = “Gone with the wind”;
String standard = s.toUpperCase();
D. String s = “home directory”;
String t = s – “directory”;
觉得B和D 都行不通,字符串虽然能够转换成数组,但是字符串本身不能用【】来表示某个字符。
减号不知道在 字符串中是否可以用。
这是一个外企的面试题。求大神们释疑。