免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2238 | 回复: 3
打印 上一主题 下一主题

请教一个java多态的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-11-03 14:39 |只看该作者 |倒序浏览

  1. public class Son extends Father
  2. {
  3.         public boolean flag = true;

  4.         public void print()
  5.         {
  6.                 System.out.print("son.print()");
  7.         }

  8.         public static void main(String[] args)
  9.         {
  10.                 Father f = new Son();

  11.                 System.out.println("f.flag = "+f.flag);
  12.                 f.print();
  13.         }
  14. }

  15. class Father
  16. {
  17.         public boolean flag = false;

  18.         protected void print()
  19.         {
  20.                 System.out.print("father.print()");
  21.         }
  22. }
复制代码


上述代码的打印结果让我很疑惑:方法多态,变量不多态么?是存储机制不同,还是其他什么原因,谢谢!

[ 本帖最后由 blackcar 于 2008-11-3 15:17 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2008-11-05 15:20 |只看该作者
public class Son extends Father
{
        public boolean flag = true;
                                                      
        public void print()
        {
                System.out.print("son.print()");
                System.out.print("Son's flag:"+this.flag);
        }
                                                      
        public static void main(String[] args)
        {
                Father f = new Son();
                                                      
                System.out.println("f.flag = "+((Son)f).flag); //转换成子类型后,获取的是子类型的成员变量

                System.out.println("f.flag = "+f.flag); //默认获取声明类型Father的成员变量;

                f.print();
        }
}
                                                      
class Father
{
        public boolean flag = false;
                                                                             
        protected void print()
        {
                System.out.print("father.print()");
                System.out.println("father's flag"+this.flag);
        }
}


引用类型不同而已; 多看看C++..

论坛徽章:
0
3 [报告]
发表于 2008-11-08 23:04 |只看该作者
回楼主的话,
你可以在处理方法中下断点跟踪,你会发现,在Son()的实例中,包含了2个flag,其中如果你用this调用的就是本身实例中的值,可是你的实例是SON而调用的声明类型为FATHER所以你的默认调用还是要以父类为基准点调用

论坛徽章:
0
4 [报告]
发表于 2008-11-12 13:27 |只看该作者
楼主你这个例子只有方法覆盖没看见方法多态
想获得父类的变量值除了上面的方法,也可以试试这个:
public class Son extends Father
{
        public boolean flag = true;

        public void print()
        {
                System.out.print("son.print()");
        }

        public static void main(String[] args)
        {
                Father f1 = new Son();
                Son f2 = new Son();

                System.out.println("f1.flag = "+f1.flag);
                System.out.println("f2.flag = "+f2.flag);
                f1.print();
                System.out.println();
                f2.print();
        }
}


跑一下看看 f1.flag f2.flag 的结果,f1.print(); f2.print(); 的结果
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP