我们可以创建子类的对象并调用父类方法吗?

时间:2016-12-14 07:10:25

标签: java

public class polymorphism {
    public void show()
    {
        System.out.println();
    }

    public void show(int i)
    {
        System.out.println("6");
    }

    public class B extends polymorphism 
    {

    } 

    /** * @param args the command line arguments */ 
    public static void main(String[] args) 
    { 
        // TODO code application logic here B obj=new B(); obj.show();
    }
}

1 个答案:

答案 0 :(得分:0)

要在对象的父类中调用方法,可以使用'super'关键字。

实施例。 super.show();