题目内容

表达式 new String("abc")== "abc"的值是false。

A. 对
B. 错

查看答案
更多问题

String对象的字符序列是不可修改的;StringBuffer对象的字符序列是可修改的。

A. 对
B. 错

表达式"Bird".equalsIgnoreCase("bird")的值是true。

A. 对
B. 错

表达式"Bird".compareTo("Bird fly")的值是负数。

A. 对
B. 错

给出下列【代码】注释标注的代码的输出结果。import java.util.regex.*;public class E {public static void main(String args[ ]) {String s = "10月1日至11月6日禁止通行";String regex = "[0-9]+[月日]";Pattern p =Pattern.compile(regex);Matcher m =p.matcher(s);int count =0;String item ="";while(m.find()) {item = m.group();count ++;}System.out.printf("%d:%s",count,item);//【代码】}}

答案查题题库