मैं इसे इस तरह से सोचता हूं
+----------------+
| super |
+----------------+ <-----------------+
| +------------+ | |
| | this | | <-+ |
| +------------+ | | |
| | @method1() | | | |
| | @method2() | | | |
| +------------+ | | |
| method4() | | |
| method5() | | |
+----------------+ | |
We instantiate that class, not that one!
मुझे उस उपवर्ग को बाईं ओर थोड़ा घूमने दें, जो यह बताए कि नीचे क्या है ... (मनुष्य, मुझे ASCII ग्राफिक्स पसंद हैं)
We are here
|
/ +----------------+
| | super |
v +----------------+
+------------+ |
| this | |
+------------+ |
| @method1() | method1() |
| @method2() | method2() |
+------------+ method3() |
| method4() |
| method5() |
+----------------+
Then we call the method
over here...
| +----------------+
_____/ | super |
/ +----------------+
| +------------+ | bar() |
| | this | | foo() |
| +------------+ | method0() |
+-> | @method1() |--->| method1() | <------------------------------+
| @method2() | ^ | method2() | |
+------------+ | | method3() | |
| | method4() | |
| | method5() | |
| +----------------+ |
\______________________________________ |
\ |
| |
...which calls super, thus calling the super's method1() here, so that that
method (the overidden one) is executed instead[of the overriding one].
Keep in mind that, in the inheritance hierarchy, since the instantiated
class is the sub one, for methods called via super.something() everything
is the same except for one thing (two, actually): "this" means "the only
this we have" (a pointer to the class we have instantiated, the
subclass), even when java syntax allows us to omit "this" (most of the
time); "super", though, is polymorphism-aware and always refers to the
superclass of the class (instantiated or not) that we're actually
executing code from ("this" is about objects [and can't be used in a
static context], super is about classes).
दूसरे शब्दों में, जावा भाषा विशिष्टता से उद्धृत :
प्रपत्र super.Identifier
नामित फ़ील्ड को संदर्भित करता हैIdentifier
वर्तमान ऑब्जेक्ट के , लेकिन वर्तमान ऑब्जेक्ट को वर्तमान वर्ग के सुपरक्लास के उदाहरण के रूप में देखा जाता है।
यह प्रपत्र लेक्सिक रूप से संलग्न उदाहरण के T.super.Identifier
नाम Identifier
से संबंधित फ़ील्ड को संदर्भित करता है T
, लेकिन उस उदाहरण के साथ सुपरक्लियर के उदाहरण के रूप में देखा जाता है T
।
आम आदमी की शर्तों में, this
मूल रूप से एक वस्तु है (* ** वस्तु; वही वस्तु जिसे आप चर में घुमा सकते हैं), तात्कालिक वर्ग का उदाहरण, डेटा डोमेन में एक सादा चर;super
कोड के एक उधार ब्लॉक के लिए एक संकेतक की तरह है जिसे आप निष्पादित करना चाहते हैं, अधिक मात्र फ़ंक्शन कॉल की तरह, और यह उस वर्ग के सापेक्ष है जहां इसे कहा जाता है।
इसलिए यदि आप super
सुपरक्लास से उपयोग करते हैं तो आपको सुपरड्यूपर क्लास [दादा दादी] से कोड प्राप्त होता है), जबकि यदि आप सुपरक्लास से उपयोग करते हैं this
(या यदि इसका उपयोग किया जाता है) तो यह उपवर्ग की ओर इशारा करता रहता है (क्योंकि किसी ने इसे नहीं बदला है - और कोई नहीं सकता है)।