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

检查程序,是否存在问题,如果存在指出问题所在,如果不存在,说明输出结果。package algorithms.com.guan.javajicu;  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.print(ex.str +"and");       System.out.print(ex.ch);     }       public void change(String str, char ch[]){       str= "test ok";       ch[0]= 'g';    }  }

  • A.test okandabc
  • B.test okandgbc
  • C.goodandabc
  • D.goodandgbc
提交并查看答案
下一题 上一题
Ke星伙伴们的回答/ 9个回答
关闭
关闭
QQ
交流群
邀请
好友
App
下载
意见
反馈
返回
顶部