以下代码片断运行结果为:Stringstr1=newString("Hello");Stringstr2=newString("Hello");System.out.println(str1.equals(str2));
A: 0
B: false
C: 1
D: true
A: 0
B: false
C: 1
D: true
举一反三
- 对于下列代码:publicclassExample{Stringstr=newString("hello");charch[]={'d','b','c'};publicstaticvoidmain(Stringargs[]){Exampleex=newExample();ex.change(ex.str,ex.ch); System.out.println(ex.str+"and"+ex.ch[0]); } publicvoidchange(Stringstr,charch[]){str="world";ch[0]='a';}}输出结果是:
- 中国大学MOOC: 以下代码片断运行结果为:String str1=new String(Hello);String str2=new String(Hello);System.out.println(str1.equals(str2));
- 如下语句的运行效果是______Dim str As Stringstr = "Hello"MsgBox str + " World"
- 以下程序运行结果为()。 A: $A[0]=Hello$A[1]=Hello$A[2]=$A[3]=$A[4]= B: $A[0]=Hello$A[1]=Hello$A[2]=Hello$A[3]= $A[4]= C: $A[0]=$A[1]=$A[2]= $A[3]= $A[4]= D: 程序运行提示错误
- 给定一个java程序的代码片断如下,运行后正确的输出结果是( )。String s=”hello, world”;String str = s.replace(“,” , ” ”);System.out.println(str); A: hello world; B: hello, world C: HELLO WORLD D: HELLO ,WORLD;