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

Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 
Activity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationActivity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationRosabel UA
 
Dust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSEDust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSEaurabinda banchhor
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSJoshuaGantuangco2
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4MiaBumagat1
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxVanesaIglesias10
 
ClimART Action | eTwinning Project
ClimART Action    |    eTwinning ProjectClimART Action    |    eTwinning Project
ClimART Action | eTwinning Projectjordimapav
 
Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Seán Kennedy
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptxAUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptxiammrhaywood
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A Beña
 
The Contemporary World: The Globalization of World Politics
The Contemporary World: The Globalization of World PoliticsThe Contemporary World: The Globalization of World Politics
The Contemporary World: The Globalization of World PoliticsRommel Regala
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfJemuel Francisco
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A Beña
 
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...JojoEDelaCruz
 
TEACHER REFLECTION FORM (NEW SET........).docx
TEACHER REFLECTION FORM (NEW SET........).docxTEACHER REFLECTION FORM (NEW SET........).docx
TEACHER REFLECTION FORM (NEW SET........).docxruthvilladarez
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parentsnavabharathschool99
 

Último (20)

Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 
Activity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationActivity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translation
 
Dust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSEDust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSE
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptx
 
ClimART Action | eTwinning Project
ClimART Action    |    eTwinning ProjectClimART Action    |    eTwinning Project
ClimART Action | eTwinning Project
 
Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptxAUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
 
The Contemporary World: The Globalization of World Politics
The Contemporary World: The Globalization of World PoliticsThe Contemporary World: The Globalization of World Politics
The Contemporary World: The Globalization of World Politics
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
 
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
 
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptxINCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
 
TEACHER REFLECTION FORM (NEW SET........).docx
TEACHER REFLECTION FORM (NEW SET........).docxTEACHER REFLECTION FORM (NEW SET........).docx
TEACHER REFLECTION FORM (NEW SET........).docx
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parents
 

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