1
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();
}
}
特別是來自該重複問題的第二個答案是您正在尋找的。提示:類名在Java中以大寫字母開頭。總是。 – GhostCat