ex10_09.cpp

来自「Beginning Visual C++ 6源码。Wrox。」· C++ 代码 · 共 66 行

CPP
66
字号
// EX10_09.CPP
// Using a reference to call a virtual function
#include <iostream>
using namespace std;

class CBox;          // Incomplete class definition required for prototype

void Output(const CBox& aBox);           // Prototype of function


class CBox                               // Base class
{
   public:

      // Function to show the volume of an object
      void ShowVolume() const
      {
         cout << endl
              << "CBox usable volume is " << Volume(); 
      }

      // Function to calculate the volume of a CBox object
      virtual double Volume() const
      { return m_Length*m_Breadth*m_Height; }

      // Constructor
      CBox(double lv = 1.0, double bv = 1.0, double hv = 1.0)
                            :m_Length(lv), m_Breadth(bv), m_Height(hv) {}

   protected:
      double m_Length;
      double m_Breadth;
      double m_Height;
};

class CGlassBox: public CBox             // Derived class
{
   public:

      // Function to calculate volume of a CGlassBox
      // allowing 15% for packing
      virtual double Volume() const
      { return 0.85*m_Length*m_Breadth*m_Height; }

      // Constructor
      CGlassBox(double lv, double bv, double hv): CBox(lv, bv, hv){}
};

int main()
{
   CBox myBox(2.0, 3.0, 4.0);            // Declare a base box
   CGlassBox myGlassBox(2.0, 3.0, 4.0);  // Declare derived box of same size

   Output(myBox);                        // Output volume of base class object
   Output(myGlassBox);                   // Output volume of derived class object

   cout << endl;
   return 0;
}

// Function to output a volume via a virtual function call using a reference
void Output(const CBox& aBox)
{
   aBox.ShowVolume();
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?