首页 试题广场 > 试题详情
单选题

指出下来程序运行的结果是
public class Example {
String str=new String("good");
char[] ch = {'a','b','c'};
public static void main(String[] args) {
Example ex = new Example();
ex.change(ex.str, ex.ch);
System.out.println(ex.str+" and");
System.out.println(ex.ch);
}
public void change(String str,char ch[]){
str = "test ok";
ch[0]='g';
}
}

  • A.good and abc
  • B.good and gbc
  • C.tst ok and abc
  • D.tst ok and gbc
提交并查看答案
下一题 上一题
Ke星伙伴们的回答/ 6个回答
关闭
关闭
QQ
交流群
邀请
好友
App
下载
意见
反馈
返回
顶部