- सुपर वेरिएबल तत्काल पैरेंट क्लास इंस्टेंस को संदर्भित करता है।
- सुपर वैरिएबल तत्काल पैरेंट क्लास मेथड को लागू कर सकता है।
- super() तत्काल पैरेंट क्लास कंस्ट्रक्टर के रूप में कार्य करता है और चाइल्ड क्लास कंस्ट्रक्टर में पहली पंक्ति होना चाहिए।
एक ओवरराइड विधि के सुपरक्लास संस्करण को लागू करते समय सुपर कीवर्ड का उपयोग किया जाता है।
उदाहरण
class Animal { public void move() { System.out.println("Animals can move"); } } class Dog extends Animal { public void move() { super.move(); // invokes the super class method System.out.println("Dogs can walk and run"); } } public class TestDog { public static void main(String args[]) { Animal b = new Dog(); // Animal reference but Dog object b.move(); // runs the method in Dog class } }
आउटपुट
यह निम्नलिखित परिणाम देगा -
Animals can move Dogs can walk and run