题目内容

假设String a="ABCDCE",则a.indexOf("C",3)的返回结果为( )

A. 2
B. 3
C. 4
D. 5

查看答案
更多问题

假设String a="abc",String b="aBc",则a.equals(b)的结果为( )

A. false
B. true
C. yes
D. no

StringBuffer a=new StringBuffer("hello"),则a.setCharAt(1,a)的结果为( )

A. heello
B. heallo
C. hallo
D. haallo

StringBuffer a=new StringBuffer("abcdefg"),则a.replace(2,5,"h")的结果为( )

A. abhg
B. abhfg
C. abhefg
D. abhdeg

假设Pattern p=Pattern.compile("\\d+");Matcher m=p.matcher("22bb23"); 则m.matches()的结果为true。

A. 对
B. 错

答案查题题库