ฉันคิดแบบนี้
+----------------+
| 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).
กล่าวอีกนัยหนึ่งคือการอ้างอิงจากข้อกำหนดภาษา Java :
แบบฟอร์มsuper.Identifier
อ้างถึงฟิลด์ที่ตั้งชื่อIdentifier
ของอ็อบเจ็กต์ปัจจุบัน แต่ด้วยอ็อบเจ็กต์ปัจจุบันที่มองว่าเป็นอินสแตนซ์ของซูเปอร์คลาสของคลาสปัจจุบัน
แบบฟอร์มที่T.super.Identifier
หมายถึงข้อมูลที่มีชื่อIdentifier
ของอินสแตนซ์ lexically การปิดล้อมที่สอดคล้องกับT
แต่มีอินสแตนซ์ที่มองว่าเป็นตัวอย่างของ superclass T
ของที่
ในแง่ของคนธรรมดาthis
นั้นโดยพื้นฐานแล้วเป็นวัตถุ (* วัตถุ ** ซึ่งเป็นวัตถุเดียวกันกับที่คุณสามารถย้ายไปมาในตัวแปรได้) ตัวอย่างของคลาสที่สร้างอินสแตนซ์ตัวแปรธรรมดาในโดเมนข้อมูล super
เปรียบเสมือนตัวชี้ไปยังบล็อกรหัสที่ยืมมาซึ่งคุณต้องการเรียกใช้งานเหมือนกับการเรียกใช้ฟังก์ชันเพียงอย่างเดียวและสัมพันธ์กับคลาสที่เรียกใช้
ดังนั้นหากคุณใช้super
จากซูเปอร์คลาสคุณจะได้รับโค้ดจากคลาส superduper [ปู่ย่าตายาย] ที่ดำเนินการ) ในขณะที่ถ้าคุณใช้this
(หรือถ้าใช้โดยปริยาย) จากซูเปอร์คลาสมันจะชี้ไปที่คลาสย่อย (เพราะไม่มีใครเปลี่ยนแปลง - และไม่มีใคร สามารถ)