【简答题】指出下列程序运行的结果public class Example{ String str=newString('good'); char[]ch={'a','b','c'}; public static voidmain(String args[]){ Example ex=new Example();ex.change(ex.str,ex.ch); System.out.print(ex.str+...
【单选题】指出下列程序运行的结果 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....
【单选题】指出下列程序运行的结果 ( ) public class Example { String str=new String("good"); char[]ch= {'a','b','c'}; public static void main(String args[]) { Example ex=new Example(); ex.ch[0]='g'; System.out.print(ex.st...