黑马程序员技术交流社区

标题: 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 都行不通,字符串虽然能够转换成数组,但是字符串本身不能用【】来表示某个字符。
减号不知道在 字符串中是否可以用。
这是一个外企的面试题。求大神们释疑。



作者: 宁振庄    时间: 2012-10-27 16:52
{:3_68:}你自己都说出答案了
作者: 胡建彪    时间: 2012-10-27 17:06
宁振庄 发表于 2012-10-27 16:52
你自己都说出答案了

我不太确定,答案应该只有一个吧?毕竟是 Which  ? 不是 Which two ?
作者: 宁振庄    时间: 2012-10-27 22:47
胡建彪 发表于 2012-10-27 17:06
我不太确定,答案应该只有一个吧?毕竟是 Which  ? 不是 Which two ?

which_百度词典

pron.哪一个;哪一些;哪个;那,指前面提到的事物




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2