SlideShare uma empresa Scribd logo
1 de 25
Baixar para ler offline
What Is Subclassing?




Subclassing is a process in which a new class is derived from an old one. It
is a distinct concept from
      (subtype) polymorphism,
      generalization/specialization and
      composition.




  Michal P´se (CTU in Prague)
          ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   2 / 12
Subclassing = Subtyping




     Subtypes are not required to share any code with their supertypes.




 Michal P´se (CTU in Prague)
         ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   3 / 12
Subclassing = Subtyping




     Subtypes are not required to share any code with their supertypes.
     On the other hand, subtypes are required to stick to the contract of
     their supertype (the Liskov substition principle).




 Michal P´se (CTU in Prague)
         ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   3 / 12
Subclassing = Subtyping




     Subtypes are not required to share any code with their supertypes.
     On the other hand, subtypes are required to stick to the contract of
     their supertype (the Liskov substition principle).
Subtyping only concerns behavior, subclassing only concerns code.




 Michal P´se (CTU in Prague)
         ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   3 / 12
The Fallacy of Current Industrial Programming Languages




In Java (and many other languages)
      subclassing implies subtyping, in other words,
      every subclass has to stick to the contract of its parent class.
That severly limits possible code reuse!




  Michal P´se (CTU in Prague)
          ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   4 / 12
Example




void DFS(Node n) {
  addToStack( n);
  while ( stackNotEmpty()) {
    n = removeFromStack();
    processNode( n);
    for ( Node c: n.children())
      addToStack( c);
  }
}




  Michal P´se (CTU in Prague)
          ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   5 / 12
Example




                                                                  Obviously, addToStack
void DFS(Node n) {
                                                                  inserts a node at the
  addToStack( n);
                                                                  beginning of a list and
  while ( stackNotEmpty()) {
                                                                  removeFromStack removes
    n = removeFromStack();
                                                                  a node from the beginning
    processNode( n);
                                                                  of that list.
    for ( Node c: n.children())
      addToStack( c);
  }
}




  Michal P´se (CTU in Prague)
          ıˇ                    Object Programming Lect. 4: Inheritance     October 19, 2010   5 / 12
Example




                                                                  Obviously, addToStack
void DFS(Node n) {
                                                                  inserts a node at the
  addToStack( n);
                                                                  beginning of a list and
  while ( stackNotEmpty()) {
                                                                  removeFromStack removes
    n = removeFromStack();
                                                                  a node from the beginning
    processNode( n);
                                                                  of that list.
    for ( Node c: n.children())
      addToStack( c);                                             Is it correct to override
  }                                                               addToStack to insert a
}                                                                 node at the end of the list?




  Michal P´se (CTU in Prague)
          ıˇ                    Object Programming Lect. 4: Inheritance       October 19, 2010   5 / 12
Example (II)




     Not in Java—the new subtype would break the contract of the
     supertype.




 Michal P´se (CTU in Prague)
         ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   6 / 12
Example (II)




     Not in Java—the new subtype would break the contract of the
     supertype.
     However, it is perfectly legitimate in languages where subclassing
     does not imply subtyping—the new class simply isn’t type-compatible
     with the old one.




 Michal P´se (CTU in Prague)
         ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   6 / 12
Subclassing = Specialization




     Subclassing does not imply specialization—subclass does not have to
     be a specialized version of superclass.




 Michal P´se (CTU in Prague)
         ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   7 / 12
Subclassing = Specialization




     Subclassing does not imply specialization—subclass does not have to
     be a specialized version of superclass.
     Specialization does not imply subclassing—a specialized version of
     object does not have to share code with the base case.




 Michal P´se (CTU in Prague)
         ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   7 / 12
Subclassing = Specialization




     Subclassing does not imply specialization—subclass does not have to
     be a specialized version of superclass.
     Specialization does not imply subclassing—a specialized version of
     object does not have to share code with the base case.
     In fact, subtyping and specialization are distinct notions as well.




 Michal P´se (CTU in Prague)
         ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   7 / 12
Subclassing = Composition




     Subclassing and composition both facilitate code reuse.
     Is there anything that can be achieved by subclassing and not
     achieved by composition or vice versa?




 Michal P´se (CTU in Prague)
         ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   8 / 12
Poor Man’s Inheritance



class Foo {                                         class Qux {
  void bar() {...}                                    Foo foo = new Foo();
  int baz() {...}                                     void bar() {
}                                                       foo.bar();
                                                      }

                                                        int baz() {
                                                          return foo.baz();
                                                        }
                                                    }




  Michal P´se (CTU in Prague)
          ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   9 / 12
Poor Man’s Inheritance



class Foo {                                         class Qux {
  void bar() {...}                                    Foo foo = new Foo();
  int baz() {...}                                     void bar() {
}                                                       foo.bar();
                                                      }

                                                        int baz() {
                                                          return foo.baz();
                                                        }
                                                    }

Emulation of inheritance using composition is far from perfect—method
overriding can be emulated only in the simplest cases.

  Michal P´se (CTU in Prague)
          ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   9 / 12
The Essence of Inheritance




So what exactly is inheritance?




  Michal P´se (CTU in Prague)
          ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   10 / 12
The Essence of Inheritance




So what exactly is inheritance?
      Inheritance is a mechanism facilitating code reuse.




  Michal P´se (CTU in Prague)
          ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   10 / 12
The Essence of Inheritance




So what exactly is inheritance?
      Inheritance is a mechanism facilitating code reuse.
      It can be thought about as the C-style include with overriding.




  Michal P´se (CTU in Prague)
          ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   10 / 12
The Essence of Inheritance




So what exactly is inheritance?
      Inheritance is a mechanism facilitating code reuse.
      It can be thought about as the C-style include with overriding.
      It enables reuse even in ways the original code creator never imagined.




  Michal P´se (CTU in Prague)
          ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   10 / 12
Implementation of Inheritance




     C++: virtual methods table.




 Michal P´se (CTU in Prague)
         ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   11 / 12
Implementation of Inheritance




     C++: virtual methods table.
     In Smalltalk: method dictionary.




 Michal P´se (CTU in Prague)
         ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   11 / 12
Implementation of Inheritance




     C++: virtual methods table.
     In Smalltalk: method dictionary.
     In systems with runtime: inline cache.




 Michal P´se (CTU in Prague)
         ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   11 / 12
See




Taivalsaari, A. On the notion of inheritance. ACM Computing Surveys
28, 3 (Sep. 1996), 438–479.
http://doi.acm.org/10.1145/243439.243441




 Michal P´se (CTU in Prague)
         ıˇ                    Object Programming Lect. 4: Inheritance   October 19, 2010   12 / 12

Mais conteúdo relacionado

Semelhante a Inheritance

Semelhante a Inheritance (6)

Multiple Dispatch
Multiple DispatchMultiple Dispatch
Multiple Dispatch
 
Subtyping
SubtypingSubtyping
Subtyping
 
Sour Pickles
Sour PicklesSour Pickles
Sour Pickles
 
Stack
StackStack
Stack
 
Type Systems
Type SystemsType Systems
Type Systems
 
Stack
StackStack
Stack
 

Mais de Michal Píše

Mais de Michal Píše (7)

Prototype Languages
Prototype LanguagesPrototype Languages
Prototype Languages
 
Reflection and Metadata
Reflection and MetadataReflection and Metadata
Reflection and Metadata
 
Encapsulation
EncapsulationEncapsulation
Encapsulation
 
Garbage Collection
Garbage CollectionGarbage Collection
Garbage Collection
 
Flow Control
Flow ControlFlow Control
Flow Control
 
Reclassification
ReclassificationReclassification
Reclassification
 
Functional Concepts
Functional ConceptsFunctional Concepts
Functional Concepts
 

Último

microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991RKavithamani
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
PSYCHIATRIC History collection FORMAT.pptx
PSYCHIATRIC   History collection FORMAT.pptxPSYCHIATRIC   History collection FORMAT.pptx
PSYCHIATRIC History collection FORMAT.pptxPoojaSen20
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 

Último (20)

microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
PSYCHIATRIC History collection FORMAT.pptx
PSYCHIATRIC   History collection FORMAT.pptxPSYCHIATRIC   History collection FORMAT.pptx
PSYCHIATRIC History collection FORMAT.pptx
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 

Inheritance

  • 1.
  • 2. What Is Subclassing? Subclassing is a process in which a new class is derived from an old one. It is a distinct concept from (subtype) polymorphism, generalization/specialization and composition. Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 2 / 12
  • 3. Subclassing = Subtyping Subtypes are not required to share any code with their supertypes. Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 3 / 12
  • 4. Subclassing = Subtyping Subtypes are not required to share any code with their supertypes. On the other hand, subtypes are required to stick to the contract of their supertype (the Liskov substition principle). Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 3 / 12
  • 5. Subclassing = Subtyping Subtypes are not required to share any code with their supertypes. On the other hand, subtypes are required to stick to the contract of their supertype (the Liskov substition principle). Subtyping only concerns behavior, subclassing only concerns code. Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 3 / 12
  • 6. The Fallacy of Current Industrial Programming Languages In Java (and many other languages) subclassing implies subtyping, in other words, every subclass has to stick to the contract of its parent class. That severly limits possible code reuse! Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 4 / 12
  • 7. Example void DFS(Node n) { addToStack( n); while ( stackNotEmpty()) { n = removeFromStack(); processNode( n); for ( Node c: n.children()) addToStack( c); } } Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 5 / 12
  • 8. Example Obviously, addToStack void DFS(Node n) { inserts a node at the addToStack( n); beginning of a list and while ( stackNotEmpty()) { removeFromStack removes n = removeFromStack(); a node from the beginning processNode( n); of that list. for ( Node c: n.children()) addToStack( c); } } Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 5 / 12
  • 9. Example Obviously, addToStack void DFS(Node n) { inserts a node at the addToStack( n); beginning of a list and while ( stackNotEmpty()) { removeFromStack removes n = removeFromStack(); a node from the beginning processNode( n); of that list. for ( Node c: n.children()) addToStack( c); Is it correct to override } addToStack to insert a } node at the end of the list? Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 5 / 12
  • 10. Example (II) Not in Java—the new subtype would break the contract of the supertype. Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 6 / 12
  • 11. Example (II) Not in Java—the new subtype would break the contract of the supertype. However, it is perfectly legitimate in languages where subclassing does not imply subtyping—the new class simply isn’t type-compatible with the old one. Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 6 / 12
  • 12. Subclassing = Specialization Subclassing does not imply specialization—subclass does not have to be a specialized version of superclass. Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 7 / 12
  • 13. Subclassing = Specialization Subclassing does not imply specialization—subclass does not have to be a specialized version of superclass. Specialization does not imply subclassing—a specialized version of object does not have to share code with the base case. Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 7 / 12
  • 14. Subclassing = Specialization Subclassing does not imply specialization—subclass does not have to be a specialized version of superclass. Specialization does not imply subclassing—a specialized version of object does not have to share code with the base case. In fact, subtyping and specialization are distinct notions as well. Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 7 / 12
  • 15. Subclassing = Composition Subclassing and composition both facilitate code reuse. Is there anything that can be achieved by subclassing and not achieved by composition or vice versa? Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 8 / 12
  • 16. Poor Man’s Inheritance class Foo { class Qux { void bar() {...} Foo foo = new Foo(); int baz() {...} void bar() { } foo.bar(); } int baz() { return foo.baz(); } } Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 9 / 12
  • 17. Poor Man’s Inheritance class Foo { class Qux { void bar() {...} Foo foo = new Foo(); int baz() {...} void bar() { } foo.bar(); } int baz() { return foo.baz(); } } Emulation of inheritance using composition is far from perfect—method overriding can be emulated only in the simplest cases. Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 9 / 12
  • 18. The Essence of Inheritance So what exactly is inheritance? Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 10 / 12
  • 19. The Essence of Inheritance So what exactly is inheritance? Inheritance is a mechanism facilitating code reuse. Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 10 / 12
  • 20. The Essence of Inheritance So what exactly is inheritance? Inheritance is a mechanism facilitating code reuse. It can be thought about as the C-style include with overriding. Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 10 / 12
  • 21. The Essence of Inheritance So what exactly is inheritance? Inheritance is a mechanism facilitating code reuse. It can be thought about as the C-style include with overriding. It enables reuse even in ways the original code creator never imagined. Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 10 / 12
  • 22. Implementation of Inheritance C++: virtual methods table. Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 11 / 12
  • 23. Implementation of Inheritance C++: virtual methods table. In Smalltalk: method dictionary. Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 11 / 12
  • 24. Implementation of Inheritance C++: virtual methods table. In Smalltalk: method dictionary. In systems with runtime: inline cache. Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 11 / 12
  • 25. See Taivalsaari, A. On the notion of inheritance. ACM Computing Surveys 28, 3 (Sep. 1996), 438–479. http://doi.acm.org/10.1145/243439.243441 Michal P´se (CTU in Prague) ıˇ Object Programming Lect. 4: Inheritance October 19, 2010 12 / 12