public class Demo1 {
public static void main(String[] args) {
String str="hello";
char [] c={'h','e','l','l','o'};
Demo1 d=new Demo1();
d.exchange(str, c);
System.out.println(str+",");
System.out.println(c);}
public void exchange(String str,char []c){str="world";c[0]='q';}}
结果怎么是hello 和qello
好惆怅













