现有代码片段:String s="123";String sl=S+456;请问sl的结果是哪项?()
A、A.123456
B、B.579
C、C.编译错误
D、D.运行时抛出异常
A、A.123456
B、B.579
C、C.编译错误
D、D.运行时抛出异常
A、. string ; B、. undefined; C、. object ; D、. String;
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”;
A、s1 B、s2 C、s2 和 s3 D、s2 和 s4
A、该行代码非法 B、s是一10行10列的数组 C、s是一包含10个一维数组的二维数组 D、s中每个元素设为""
A、if(s==s2) B、if(s.equals(s2)) C、if(s.equalsIgnoreCase(s2)) D、if(s.noCaseMatch(s2))
A、该行代码非法 B、s是一10行10列的数组 C、s是一包含10个一维数组的二维数组 D、"s中每个元素设为"""""
A、String regex=""; B、String regex=" ."; C、String regex=".*"; D、String regex="\\s"; E、String regex="\\.\\s*"; F、String regex="\\w[\.]+";