黑马程序员技术交流社区
标题:
这个程序有什么问题?
[打印本页]
作者:
kmlitheima
时间:
2015-6-3 22:02
标题:
这个程序有什么问题?
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.println(ex.ch);
}
public void change(String str,char[] ch){
str="test ok";
ch[0] = 'g' ;
}
}
作者:
想要那片海
时间:
2015-6-3 22:24
因为String类型的变量指向的是内存中的一个地址值,你虽然在change 方法中改变了引用指向,却没有把这种改变返回给原来的变量,数组虽然也是指向内存中的一个地址,但是针对ch[0]却是指向的内存中的数值,改变了值就会直接返回到原来的结果中
public class Example{
String str=new String("good");
char[]ch={'a','b','c'};
public static void main(String args[]){
Example ex=new Example();
//将通过change方法改变的str引用的结果返回给原来的变量
ex.str= ex.change(ex.str,ex.ch);
System.out.println(ex.str+" and ");
System.out.println(ex.ch);
}
public String change(String str,char[] ch){
return str="test ok"; //改变引用指向
//ch[0]='g';
}
}
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2