際際滷

際際滷Share a Scribd company logo
Illustration of the use of virtual inheritance.
  //
   // Virtual inheritance
   #include <iostream.h>

   typedef int HANDS;
  enum COLOR { Red, Green, Blue, Yellow, White, Black, Brown } ;
   enum BOOL { FALSE, TRUE };

   class Animal        // common base to both horse and bird
  {
  public:
     Animal(int);
     virtual ~Animal() { cout << "Animal destructor...n"; }
     virtual int GetAge() const { return itsAge; }
     virtual void SetAge(int age) { itsAge = age; }
  private:
     int itsAge;
  };

  Animal::Animal(int age):
  itsAge(age)
  {
     cout << "Animal constructor...n";
  }

  class Horse : virtual public Animal
  {
  public:
     Horse(COLOR color, HANDS height, int age);
     virtual ~Horse() { cout << "Horse destructor...n"; }
     virtual void Whinny()const { cout << "Whinny!... "; }
     virtual HANDS GetHeight() const { return itsHeight; }
     virtual COLOR GetColor() const { return itsColor; }
  protected:
     HANDS itsHeight;
     COLOR itsColor;
  };

  Horse::Horse(COLOR color, HANDS height, int age):
     Animal(age),
     itsColor(color),itsHeight(height)
  {
     cout << "Horse constructor...n";
  }

  class Bird : virtual public Animal
  {
  public:
     Bird(COLOR color, BOOL migrates, int age);
virtual ~Bird() {cout << "Bird destructor...n"; }
   virtual void Chirp()const { cout << "Chirp... "; }
   virtual void Fly()const
      { cout << "I can fly! I can fly! I can fly! "; }
   virtual COLOR GetColor()const { return itsColor; }
   virtual BOOL GetMigration() const { return itsMigration; }
protected:
   COLOR itsColor;
   BOOL itsMigration;
};

Bird::Bird(COLOR color, BOOL migrates, int age):
   Animal(age),
   itsColor(color), itsMigration(migrates)
{
   cout << "Bird constructor...n";
}

class Pegasus : public Horse, public Bird
{
public:
   void Chirp()const { Whinny(); }
   Pegasus(COLOR, HANDS, BOOL, long, int);
   ~Pegasus() {cout << "Pegasus destructor...n";}
   virtual long GetNumberBelievers() const
      { return itsNumberBelievers; }
   virtual COLOR GetColor()const { return Horse::itsColor; }
private:
   long itsNumberBelievers;
};

Pegasus::Pegasus(
   COLOR aColor,
   HANDS height,
   BOOL migrates,
   long NumBelieve,
   int age):
Horse(aColor, height,age),
Bird(aColor, migrates,age),
Animal(age*2),
itsNumberBelievers(NumBelieve)
{
  cout << "Pegasus constructor...n";
}

int main()
{
   Pegasus *pPeg = new Pegasus(Red, 5, TRUE, 10, 2);
   int age = pPeg->GetAge();
   cout << "This pegasus is " << age << " years old.n";
delete pPeg;
     return 0;
 }

/ virtual members
#include <iostream>
using namespace std;

class CPolygon {
  protected:
     int width, height;
  public:
     void set_values (int a, int b)
       { width=a; height=b; }
     virtual int area ()
       { return (0); }
  };

class CRectangle: public CPolygon {
  public:
     int area ()
       { return (width * height); }
  };

class CTriangle: public CPolygon {
  public:
     int area ()
       { return (width * height / 2); }
  };

int main () {
  CRectangle rect;
  CTriangle trgl;
  CPolygon poly;
  CPolygon * ppoly1 = &rect;
  CPolygon * ppoly2 = &trgl;
  CPolygon * ppoly3 = &poly;
  ppoly1->set_values (4,5);
  ppoly2->set_values (4,5);
  ppoly3->set_values (4,5);
  cout << ppoly1->area() << endl;
  cout << ppoly2->area() << endl;
  cout << ppoly3->area() << endl;
  return 0;
}
#include <iostream>
using namespace std;

class CPolygon {
  protected:
     int width, height;
  public:
     void set_values (int a, int b)
       { width=a; height=b; }
     virtual int area (void) =0;
  };

class CRectangle: public CPolygon {
  public:
     int area (void)
       { return (width * height); }
  };

class CTriangle: public CPolygon {
  public:
     int area (void)
       { return (width * height / 2); }
  };

int main () {
  CRectangle rect;
  CTriangle trgl;
  CPolygon * ppoly1 = &rect;
  CPolygon * ppoly2 = &trgl;
  ppoly1->set_values (4,5);
  ppoly2->set_values (4,5);
  cout << ppoly1->area() << endl;
  cout << ppoly2->area() << endl;
  return 0;
}
// pure virtual members can be called
// from the abstract base class
#include <iostream>
using namespace std;

class CPolygon {
  protected:
     int width, height;
  public:
     void set_values (int a, int b)
       { width=a; height=b; }
     virtual int area (void) =0;
     void printarea (void)
       { cout << this->area() << endl; }
  };

class CRectangle: public CPolygon {
  public:
     int area (void)
       { return (width * height); }
  };
class CTriangle: public CPolygon {
  public:
     int area (void)
       { return (width * height / 2); }
  };

int main () {
  CRectangle rect;
  CTriangle trgl;
  CPolygon * ppoly1 = &rect;
  CPolygon * ppoly2 = &trgl;
  ppoly1->set_values (4,5);
  ppoly2->set_values (4,5);
  ppoly1->printarea();
  ppoly2->printarea();
  return 0;
}

More Related Content

What's hot (20)

Introduction to Perl
Introduction to PerlIntroduction to Perl
Introduction to Perl
Sway Wang
C++ Programming - 2nd Study
C++ Programming - 2nd StudyC++ Programming - 2nd Study
C++ Programming - 2nd Study
Chris Ohk
Introduction to go
Introduction to goIntroduction to go
Introduction to go
Jaehue Jang
Introduction to Swift programming language.
Introduction to Swift programming language.Introduction to Swift programming language.
Introduction to Swift programming language.
Icalia Labs
F# delight
F# delightF# delight
F# delight
priort
String
StringString
String
SANTOSH RATH
C++ via C#
C++ via C#C++ via C#
C++ via C#
Egor Bogatov
Ruby on rails tips
Ruby  on rails tipsRuby  on rails tips
Ruby on rails tips
BinBin He
Spotify at PyCon Finland 2011
Spotify at PyCon Finland 2011Spotify at PyCon Finland 2011
Spotify at PyCon Finland 2011
Tommie Gannert
Let's make a contract: the art of designing a Java API
Let's make a contract: the art of designing a Java APILet's make a contract: the art of designing a Java API
Let's make a contract: the art of designing a Java API
Mario Fusco
All I know about rsc.io/c2go
All I know about rsc.io/c2goAll I know about rsc.io/c2go
All I know about rsc.io/c2go
Moriyoshi Koizumi
FPBrno 2018-05-22: Benchmarking in elixir
FPBrno 2018-05-22: Benchmarking in elixirFPBrno 2018-05-22: Benchmarking in elixir
FPBrno 2018-05-22: Benchmarking in elixir
Functional Programming Brno
Unmanaged Parallelization via P/Invoke
Unmanaged Parallelization via P/InvokeUnmanaged Parallelization via P/Invoke
Unmanaged Parallelization via P/Invoke
Dmitri Nesteruk
C++ Programming - 4th Study
C++ Programming - 4th StudyC++ Programming - 4th Study
C++ Programming - 4th Study
Chris Ohk
Hacking Go Compiler Internals / GoCon 2014 Autumn
Hacking Go Compiler Internals / GoCon 2014 AutumnHacking Go Compiler Internals / GoCon 2014 Autumn
Hacking Go Compiler Internals / GoCon 2014 Autumn
Moriyoshi Koizumi
Android 101 - Building a simple app with Kotlin in 90 minutes
Android 101 - Building a simple app with Kotlin in 90 minutesAndroid 101 - Building a simple app with Kotlin in 90 minutes
Android 101 - Building a simple app with Kotlin in 90 minutes
Kai Koenig
束Python 仆舒 仂亳亠 弍亳于: PyPy project損 仍亠从舒仆亟 仂从亳仆, Positive Technologies
束Python 仆舒 仂亳亠 弍亳于: PyPy project損 仍亠从舒仆亟 仂从亳仆, Positive Technologies束Python 仆舒 仂亳亠 弍亳于: PyPy project損 仍亠从舒仆亟 仂从亳仆, Positive Technologies
束Python 仆舒 仂亳亠 弍亳于: PyPy project損 仍亠从舒仆亟 仂从亳仆, Positive Technologies
it-people
D vs OWKN Language at LLnagoya
D vs OWKN Language at LLnagoyaD vs OWKN Language at LLnagoya
D vs OWKN Language at LLnagoya
N Masahiro
Jan 2012 HUG: RHadoop
Jan 2012 HUG: RHadoopJan 2012 HUG: RHadoop
Jan 2012 HUG: RHadoop
Yahoo Developer Network
Led with raspberry pi
Led with raspberry piLed with raspberry pi
Led with raspberry pi
Maryala Srinivas
Introduction to Perl
Introduction to PerlIntroduction to Perl
Introduction to Perl
Sway Wang
C++ Programming - 2nd Study
C++ Programming - 2nd StudyC++ Programming - 2nd Study
C++ Programming - 2nd Study
Chris Ohk
Introduction to go
Introduction to goIntroduction to go
Introduction to go
Jaehue Jang
Introduction to Swift programming language.
Introduction to Swift programming language.Introduction to Swift programming language.
Introduction to Swift programming language.
Icalia Labs
F# delight
F# delightF# delight
F# delight
priort
Ruby on rails tips
Ruby  on rails tipsRuby  on rails tips
Ruby on rails tips
BinBin He
Spotify at PyCon Finland 2011
Spotify at PyCon Finland 2011Spotify at PyCon Finland 2011
Spotify at PyCon Finland 2011
Tommie Gannert
Let's make a contract: the art of designing a Java API
Let's make a contract: the art of designing a Java APILet's make a contract: the art of designing a Java API
Let's make a contract: the art of designing a Java API
Mario Fusco
All I know about rsc.io/c2go
All I know about rsc.io/c2goAll I know about rsc.io/c2go
All I know about rsc.io/c2go
Moriyoshi Koizumi
Unmanaged Parallelization via P/Invoke
Unmanaged Parallelization via P/InvokeUnmanaged Parallelization via P/Invoke
Unmanaged Parallelization via P/Invoke
Dmitri Nesteruk
C++ Programming - 4th Study
C++ Programming - 4th StudyC++ Programming - 4th Study
C++ Programming - 4th Study
Chris Ohk
Hacking Go Compiler Internals / GoCon 2014 Autumn
Hacking Go Compiler Internals / GoCon 2014 AutumnHacking Go Compiler Internals / GoCon 2014 Autumn
Hacking Go Compiler Internals / GoCon 2014 Autumn
Moriyoshi Koizumi
Android 101 - Building a simple app with Kotlin in 90 minutes
Android 101 - Building a simple app with Kotlin in 90 minutesAndroid 101 - Building a simple app with Kotlin in 90 minutes
Android 101 - Building a simple app with Kotlin in 90 minutes
Kai Koenig
束Python 仆舒 仂亳亠 弍亳于: PyPy project損 仍亠从舒仆亟 仂从亳仆, Positive Technologies
束Python 仆舒 仂亳亠 弍亳于: PyPy project損 仍亠从舒仆亟 仂从亳仆, Positive Technologies束Python 仆舒 仂亳亠 弍亳于: PyPy project損 仍亠从舒仆亟 仂从亳仆, Positive Technologies
束Python 仆舒 仂亳亠 弍亳于: PyPy project損 仍亠从舒仆亟 仂从亳仆, Positive Technologies
it-people
D vs OWKN Language at LLnagoya
D vs OWKN Language at LLnagoyaD vs OWKN Language at LLnagoya
D vs OWKN Language at LLnagoya
N Masahiro

Viewers also liked (7)

0128 1604 10mseminar[1]
0128 1604 10mseminar[1]0128 1604 10mseminar[1]
0128 1604 10mseminar[1]
Shun Nokubo
Portfolio Karel Peelman 06/2011
Portfolio Karel Peelman 06/2011Portfolio Karel Peelman 06/2011
Portfolio Karel Peelman 06/2011
karelpeelman
Natural way to_strengthen_immune_system_final[1]
Natural way to_strengthen_immune_system_final[1]Natural way to_strengthen_immune_system_final[1]
Natural way to_strengthen_immune_system_final[1]
advacu
1129 5m seminar
1129 5m seminar1129 5m seminar
1129 5m seminar
Shun Nokubo
Natural way to_strengthen_immune_system_final[1]
Natural way to_strengthen_immune_system_final[1]Natural way to_strengthen_immune_system_final[1]
Natural way to_strengthen_immune_system_final[1]
advacu
Natural weight management
Natural weight managementNatural weight management
Natural weight management
advacu
Wintegration - Strategieworkshop f端r GrogruppenWintegration - Strategieworkshop f端r Grogruppen
Wintegration - Strategieworkshop f端r Grogruppen
Marko Willnecker
0128 1604 10mseminar[1]
0128 1604 10mseminar[1]0128 1604 10mseminar[1]
0128 1604 10mseminar[1]
Shun Nokubo
Portfolio Karel Peelman 06/2011
Portfolio Karel Peelman 06/2011Portfolio Karel Peelman 06/2011
Portfolio Karel Peelman 06/2011
karelpeelman
Natural way to_strengthen_immune_system_final[1]
Natural way to_strengthen_immune_system_final[1]Natural way to_strengthen_immune_system_final[1]
Natural way to_strengthen_immune_system_final[1]
advacu
1129 5m seminar
1129 5m seminar1129 5m seminar
1129 5m seminar
Shun Nokubo
Natural way to_strengthen_immune_system_final[1]
Natural way to_strengthen_immune_system_final[1]Natural way to_strengthen_immune_system_final[1]
Natural way to_strengthen_immune_system_final[1]
advacu
Natural weight management
Natural weight managementNatural weight management
Natural weight management
advacu
Wintegration - Strategieworkshop f端r GrogruppenWintegration - Strategieworkshop f端r Grogruppen
Wintegration - Strategieworkshop f端r Grogruppen
Marko Willnecker

Similar to Virtual inheritance (20)

Opp compile
Opp compileOpp compile
Opp compile
Muhammad Faiz
Inheritance compiler support
Inheritance compiler supportInheritance compiler support
Inheritance compiler support
Syed Zaid Irshad
Object Oriented Programming (OOP) using C++ - Lecture 3
Object Oriented Programming (OOP) using C++ - Lecture 3Object Oriented Programming (OOP) using C++ - Lecture 3
Object Oriented Programming (OOP) using C++ - Lecture 3
Faculty of Computers and Informatics, Suez Canal University, Ismailia, Egypt
Sbaw091006
Sbaw091006Sbaw091006
Sbaw091006
Atsushi Tadokoro
labwork practice on inhetitance-1.pptx
labwork  practice on  inhetitance-1.pptxlabwork  practice on  inhetitance-1.pptx
labwork practice on inhetitance-1.pptx
soniasharmafdp
Web2Day 2017 - Concilier DomainDriveDesign et API REST
Web2Day 2017 - Concilier DomainDriveDesign et API RESTWeb2Day 2017 - Concilier DomainDriveDesign et API REST
Web2Day 2017 - Concilier DomainDriveDesign et API REST
Nicolas Faugout
OOP_EXPLAINED_example_of_cod_and_explainations.pdf
OOP_EXPLAINED_example_of_cod_and_explainations.pdfOOP_EXPLAINED_example_of_cod_and_explainations.pdf
OOP_EXPLAINED_example_of_cod_and_explainations.pdf
DerekDixmanChakowela
Game unleashedjavascript
Game unleashedjavascriptGame unleashedjavascript
Game unleashedjavascript
Reece Carlson
import javautilLinkedList import javautilQueue import .pdf
import javautilLinkedList import javautilQueue import .pdfimport javautilLinkedList import javautilQueue import .pdf
import javautilLinkedList import javautilQueue import .pdf
ADITIEYEWEAR
C++ Language
C++ LanguageC++ Language
C++ Language
Vidyacenter
Better Software: introduction to good code
Better Software: introduction to good codeBetter Software: introduction to good code
Better Software: introduction to good code
Giordano Scalzo
Paradigmas de Linguagens de Programacao - Aula #4
Paradigmas de Linguagens de Programacao - Aula #4Paradigmas de Linguagens de Programacao - Aula #4
Paradigmas de Linguagens de Programacao - Aula #4
Ismar Silveira
C++ programs
C++ programsC++ programs
C++ programs
Mukund Gandrakota
Introduzione a C#
Introduzione a C#Introduzione a C#
Introduzione a C#
Lorenz Cuno Klopfenstein
DotNet Conference: code smells
DotNet Conference: code smellsDotNet Conference: code smells
DotNet Conference: code smells
Fernando Escolar Mart鱈nez-Berganza
Object Oriented Programming using C++: Ch09 Inheritance.pptx
Object Oriented Programming using C++: Ch09 Inheritance.pptxObject Oriented Programming using C++: Ch09 Inheritance.pptx
Object Oriented Programming using C++: Ch09 Inheritance.pptx
RashidFaridChishti
Pads lab manual final
Pads lab manual finalPads lab manual final
Pads lab manual final
AhalyaR
C++ lectures all chapters in one slide.pptx
C++ lectures all chapters in one slide.pptxC++ lectures all chapters in one slide.pptx
C++ lectures all chapters in one slide.pptx
ssuser3cbb4c
Object Oriented Programming (OOP) using C++ - Lecture 2
Object Oriented Programming (OOP) using C++ - Lecture 2Object Oriented Programming (OOP) using C++ - Lecture 2
Object Oriented Programming (OOP) using C++ - Lecture 2
Faculty of Computers and Informatics, Suez Canal University, Ismailia, Egypt
oodp elab.pdf
oodp elab.pdfoodp elab.pdf
oodp elab.pdf
SWATIKUMARIRA2111030
Inheritance compiler support
Inheritance compiler supportInheritance compiler support
Inheritance compiler support
Syed Zaid Irshad
labwork practice on inhetitance-1.pptx
labwork  practice on  inhetitance-1.pptxlabwork  practice on  inhetitance-1.pptx
labwork practice on inhetitance-1.pptx
soniasharmafdp
Web2Day 2017 - Concilier DomainDriveDesign et API REST
Web2Day 2017 - Concilier DomainDriveDesign et API RESTWeb2Day 2017 - Concilier DomainDriveDesign et API REST
Web2Day 2017 - Concilier DomainDriveDesign et API REST
Nicolas Faugout
OOP_EXPLAINED_example_of_cod_and_explainations.pdf
OOP_EXPLAINED_example_of_cod_and_explainations.pdfOOP_EXPLAINED_example_of_cod_and_explainations.pdf
OOP_EXPLAINED_example_of_cod_and_explainations.pdf
DerekDixmanChakowela
Game unleashedjavascript
Game unleashedjavascriptGame unleashedjavascript
Game unleashedjavascript
Reece Carlson
import javautilLinkedList import javautilQueue import .pdf
import javautilLinkedList import javautilQueue import .pdfimport javautilLinkedList import javautilQueue import .pdf
import javautilLinkedList import javautilQueue import .pdf
ADITIEYEWEAR
Better Software: introduction to good code
Better Software: introduction to good codeBetter Software: introduction to good code
Better Software: introduction to good code
Giordano Scalzo
Paradigmas de Linguagens de Programacao - Aula #4
Paradigmas de Linguagens de Programacao - Aula #4Paradigmas de Linguagens de Programacao - Aula #4
Paradigmas de Linguagens de Programacao - Aula #4
Ismar Silveira
Object Oriented Programming using C++: Ch09 Inheritance.pptx
Object Oriented Programming using C++: Ch09 Inheritance.pptxObject Oriented Programming using C++: Ch09 Inheritance.pptx
Object Oriented Programming using C++: Ch09 Inheritance.pptx
RashidFaridChishti
Pads lab manual final
Pads lab manual finalPads lab manual final
Pads lab manual final
AhalyaR
C++ lectures all chapters in one slide.pptx
C++ lectures all chapters in one slide.pptxC++ lectures all chapters in one slide.pptx
C++ lectures all chapters in one slide.pptx
ssuser3cbb4c

Virtual inheritance

  • 1. Illustration of the use of virtual inheritance. // // Virtual inheritance #include <iostream.h> typedef int HANDS; enum COLOR { Red, Green, Blue, Yellow, White, Black, Brown } ; enum BOOL { FALSE, TRUE }; class Animal // common base to both horse and bird { public: Animal(int); virtual ~Animal() { cout << "Animal destructor...n"; } virtual int GetAge() const { return itsAge; } virtual void SetAge(int age) { itsAge = age; } private: int itsAge; }; Animal::Animal(int age): itsAge(age) { cout << "Animal constructor...n"; } class Horse : virtual public Animal { public: Horse(COLOR color, HANDS height, int age); virtual ~Horse() { cout << "Horse destructor...n"; } virtual void Whinny()const { cout << "Whinny!... "; } virtual HANDS GetHeight() const { return itsHeight; } virtual COLOR GetColor() const { return itsColor; } protected: HANDS itsHeight; COLOR itsColor; }; Horse::Horse(COLOR color, HANDS height, int age): Animal(age), itsColor(color),itsHeight(height) { cout << "Horse constructor...n"; } class Bird : virtual public Animal { public: Bird(COLOR color, BOOL migrates, int age);
  • 2. virtual ~Bird() {cout << "Bird destructor...n"; } virtual void Chirp()const { cout << "Chirp... "; } virtual void Fly()const { cout << "I can fly! I can fly! I can fly! "; } virtual COLOR GetColor()const { return itsColor; } virtual BOOL GetMigration() const { return itsMigration; } protected: COLOR itsColor; BOOL itsMigration; }; Bird::Bird(COLOR color, BOOL migrates, int age): Animal(age), itsColor(color), itsMigration(migrates) { cout << "Bird constructor...n"; } class Pegasus : public Horse, public Bird { public: void Chirp()const { Whinny(); } Pegasus(COLOR, HANDS, BOOL, long, int); ~Pegasus() {cout << "Pegasus destructor...n";} virtual long GetNumberBelievers() const { return itsNumberBelievers; } virtual COLOR GetColor()const { return Horse::itsColor; } private: long itsNumberBelievers; }; Pegasus::Pegasus( COLOR aColor, HANDS height, BOOL migrates, long NumBelieve, int age): Horse(aColor, height,age), Bird(aColor, migrates,age), Animal(age*2), itsNumberBelievers(NumBelieve) { cout << "Pegasus constructor...n"; } int main() { Pegasus *pPeg = new Pegasus(Red, 5, TRUE, 10, 2); int age = pPeg->GetAge(); cout << "This pegasus is " << age << " years old.n";
  • 3. delete pPeg; return 0; } / virtual members #include <iostream> using namespace std; class CPolygon { protected: int width, height; public: void set_values (int a, int b) { width=a; height=b; } virtual int area () { return (0); } }; class CRectangle: public CPolygon { public: int area () { return (width * height); } }; class CTriangle: public CPolygon { public: int area () { return (width * height / 2); } }; int main () { CRectangle rect; CTriangle trgl; CPolygon poly; CPolygon * ppoly1 = &rect; CPolygon * ppoly2 = &trgl; CPolygon * ppoly3 = &poly; ppoly1->set_values (4,5); ppoly2->set_values (4,5); ppoly3->set_values (4,5); cout << ppoly1->area() << endl; cout << ppoly2->area() << endl; cout << ppoly3->area() << endl; return 0; }
  • 4. #include <iostream> using namespace std; class CPolygon { protected: int width, height; public: void set_values (int a, int b) { width=a; height=b; } virtual int area (void) =0; }; class CRectangle: public CPolygon { public: int area (void) { return (width * height); } }; class CTriangle: public CPolygon { public: int area (void) { return (width * height / 2); } }; int main () { CRectangle rect; CTriangle trgl; CPolygon * ppoly1 = &rect; CPolygon * ppoly2 = &trgl; ppoly1->set_values (4,5); ppoly2->set_values (4,5); cout << ppoly1->area() << endl; cout << ppoly2->area() << endl; return 0; } // pure virtual members can be called // from the abstract base class #include <iostream> using namespace std; class CPolygon { protected: int width, height; public: void set_values (int a, int b) { width=a; height=b; } virtual int area (void) =0; void printarea (void) { cout << this->area() << endl; } }; class CRectangle: public CPolygon { public: int area (void) { return (width * height); } };
  • 5. class CTriangle: public CPolygon { public: int area (void) { return (width * height / 2); } }; int main () { CRectangle rect; CTriangle trgl; CPolygon * ppoly1 = &rect; CPolygon * ppoly2 = &trgl; ppoly1->set_values (4,5); ppoly2->set_values (4,5); ppoly1->printarea(); ppoly2->printarea(); return 0; }