题目内容

下面代码段输出结果是()。String str="Work hard for dreams";System.out.println(str.indexOf('h'));

A. d'
B. 4
C. 5
D. 6

查看答案
更多问题

编译如下定义的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

答案查题题库