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();
}
}
答案 0 :(得分:0)
要在对象的父类中调用方法,可以使用'super'关键字。
实施例。 super.show();