标题:为什么这个程序不能实现多态性?(Java新人)
取消只看楼主
赤云
Rank: 2
等 级:论坛游民
帖 子:82
专家分:35
注 册:2014-12-29
结帖率:64.71%
已结贴  问题点数:10 回复次数:0 
为什么这个程序不能实现多态性?(Java新人)
程序代码:
package ch01;

class  B extends A//派生类
{
    public void print(){
        System.out.println("子类中的print");
    }
    public static void main(String[] args)
    {
        A a=new B();
        a.print();//此处为什么调用的是类A的print()?
        B b=new B();
        b.print();
    }
}
class A//基类
{
    public A(){
        System.out.println("调用父类构造方法!");
    }
    public void print(){
        System.out.println("类A中的print");
    }
}

这是运行结果:
调用父类构造方法!
子类中的print
调用父类构造方法!
子类中的print
搜索更多相关主题的帖子: Java 多态性 
2015-09-11 09:19



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-457214-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.333712 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved