黑马程序员技术交流社区

标题: 改变对象值得疑惑 [打印本页]

作者: 不破大地    时间: 2013-6-12 19:01
标题: 改变对象值得疑惑
public class Test2
{

        public int x = 2;
        static void func(String str1)
        {
                str1 = "12232";
        }
        static void func2(Test4 t)
       {
                t.x = 12;
        }
        public static void main(String args[])
       {
                //测试String对象
                String str1 = "hello";
                System.out.println(str1);
                func(str1);
                System.out.println(str1);
                //测试Test4对象
                Test4 t = new Test4();
                System.out.println(t.x);
                func2(t);
                System.out.println(t.x);
        }
}
class Test4
{
        public int x = 5;
}
为什么在func中没有改变主函数中的str1对象的值,而在func2中改变了主函数中的对象t的值了呢?

作者: 张歆明    时间: 2013-6-12 19:14
本帖最后由 张歆明 于 2013-6-12 19:36 编辑

****************************************************************************
为什么在func中没有改变主函数中的str1对象的值,而在func2中改变了主函数中的对象t的值了呢?
****************************************************************************
这是因为  字符串常量"abc" 和 “12232”都是字符串常量对象 常量就是不能被改变的  ----这是字符串常量的特点
这些常量都在方法区的常量池里面
所以  func中没有改变主函数中的str1对象的值
见图

但是 func2中改变的是对内存中的成员变量 这个变量不是final的  所以是可以改变的
所以 func2里面就把t.x的值改变了



作者: 王靖远    时间: 2013-6-12 19:19
public int x = 2;
        static String func(String str1)
        {
                return str1 = "12232";
        }
        static void func2(Test4 t)
       {
                t.x = 12;
        }
        public static void main(String args[])
       {
                //测试String对象
                String str1 = "hello";
                System.out.println(str1);
                str1 = func(str1);
                System.out.println(str1);
                //测试Test4对象
                Test4 t = new Test4();
                System.out.println(t.x);
                func2(t);
                System.out.println(t.x);
        }
}
class Test4
{
        public int x = 5;
}

这样就OK了。
作者: 逸盏清茶    时间: 2013-6-12 23:01
  1. public class Test2
  2. {

  3.         public int x = 2;
  4.         static void func(String s)    //你把这里的参数str1改为s  看起来就清楚一些,s是局部变量,方法运行完就释放.
  5.         {
  6.                 s = "12232";
  7.         }
  8.         static void func2(Test4 t)
  9.        {
  10.                 t.x = 12;
  11.         }
  12.         public static void main(String args[])
  13.        {
  14.                 //测试String对象
  15.                 String str1 = "hello";
  16.                 System.out.println(str1);
  17.                 func(str1);          //方法执行完 释放
  18.                 System.out.println(str1);    //这里打印的是主函数中的str1;
  19.                 //测试Test4对象
  20.                 Test4 t = new Test4();
  21.                 System.out.println(t.x);
  22.                 func2(t);                 //这里的x是t对象身上的成员变量,对象的x值变成了12
  23.                 System.out.println(t.x);   //打印了t对象的x值12
  24.         }
  25. }
  26. class Test4
  27. {
  28.         public int x = 5;      
  29. }
复制代码

作者: 孙百鑫    时间: 2013-6-22 01:19
楼主您好~帖子长时间未作出回答,我已经将您的帖子改成已解决。如果有问题的话可以私密我哦~




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2