الرجوع
تسجيل الدخول
أنت تتصفح نسخة مؤرشفة من الموقع اضغط للانتقال إلى الموقع الجديد بكامل المزايا

Which statement will correctly call the super class's show() method in the following scenario?

class Parent {
    void show() {
        System.out.println("Parent show");
    }
}
class Child extends Parent {
    void show() {
        //////////// Insert statement here //////////////////
        System.out.println("Child show");
    }
}