本帖最后由 ゞ心痛-τ._煩離 于 2013-10-21 15:47 编辑
- public class Test{
- String str=new String("good");
- char[] ch={'a','b','c'};
- public void change(String str,char ch[]){
- str="test ok";
- ch[0]='g';
- }
- public static void main(String args[]){
- Test t=new Test();
- System.out.println(t.str);
- t.change(t.str,t.ch);
- System.out.print(t.str+"and");
- System.out.print(t.ch);
- }
- }
复制代码 为什么结果是goodandgbc,我怎么感觉是test okandgbc |