编译如下定义的MyString类,将出现()。class MyString extends java.lang.String{ }
A. 成功编译
B. 不能编译,因为没有main方法
C. 不能编译,因为String是abstract类型的
D. 不能编译,因为String是final类型的
查看答案
覆写Object中的()方法使对象能够返回有价值的信息。
A. equals()
B. clone()
C. toString()
D. hashCode()
以下程序段输出结果的是()public class Test{public static void main(String args[]){String str="ABCDEF";str.substring(3);str.concat("XYZ");System.out.print(str);}}
A. DEF
B. DEFXYZ
C. ABCDEF
D. CDEXYZ
对于下列代码:public class Example{String str=new String("java");char ch[]={'d','b','c'};public static void main(String args[]){Example ex=new Example();ex.change(ex.str,ex.ch);System.out.println(ex.str+" and "+ex.ch[0]);}public void change(String str,char ch[]){str="world";ch[0]= 'b';}}输出结果是: ()
A. world and b
B. java and b
C. world and d
D. java and d
运行下列程序:String str = "**oracle***oracle*****oracle***";String str1 = "oracle";int index = 0;while ((index = str.indexOf(str1, index)) != -1) {System.out.print(index+" ");index += str1.length();}控制台输出的结果是()。
A. 1 10 21
B. 2 1122
C. 3 13 23
D. 5 13 22