以下のAnimal クラスのコードでClimbTrees()メソッドを削除すると、エラーが発生するのはなぜですか
public class Refr1
{
public static void main(String[] args)
{
Animal objChimp = new Chimp();
objChimp.ClimbTrees();
}
}
class Animal
{
void ClimbTrees()
{
System.out.println("I am Animal Which Climb Tree");
}
}
class Chimp extends Animal
{
void ClimbTrees()
{
System.out.println("I am Chimp Which Climb Tree");
}
}
Animal クラスのClimbTrees()を削除すると、以下のエラーが表示されます
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
The method ClimbTrees() is undefined for the type Animal