class Parent{
void show(){System.out.println("parent");}
}
class Child extends Parent{
void show() {System.out.println("child");}
}
class Main {
public static void main(String args[]) {
Parent pa=(가) Child();
pa.show();
}
}
To embed this project on your website, copy the following code and paste it into your website's HTML: