namespace cpp {}

C++ lernen, kennen, anwenden

Benutzer-Werkzeuge

Webseiten-Werkzeuge


kennen:beispiel:vererben

Beispiel Vererbungsarten

vererben.cpp
#include <iostream>
 
class DeepThought
{
public:
  int berechnen () 
  { // sleep(years2secs(7500000));
    return zahl << 1 ^ zahl << 3 ^ zahl << 5; 
  }
protected:
  int zahl;
};
 
class Antwort
{
public:
  virtual int erfragen() { return 0; }
  virtual ~Antwort() {}
};
 
class UltimativeAntwort : public Antwort, private DeepThought
{                         // Interface         Implementation
public:
  int erfragen() 
  {
    zahl = 1;
    return berechnen(); 
  }
};
 
int main()
{
  Antwort* antwort = new UltimativeAntwort();
  std::cout << antwort->erfragen() << '\n';
  delete antwort;
}
kennen/beispiel/vererben.txt · Zuletzt geändert: 2017-04-19 21:40 von 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki