SlideShare une entreprise Scribd logo
1  sur  25
Télécharger pour lire hors ligne
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

Contenu connexe

Similaire à 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
 

Plus de Michal Píše

Plus 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
 

Dernier

Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 

Dernier (20)

Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 

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