C++ 指向類的指針

C++ 類 & 對(duì)象 C++ 類 & 對(duì)象

一個(gè)指向 C++ 類的指針與指向結(jié)構(gòu)的指針類似,訪問指向類的指針的成員,需要使用成員訪問運(yùn)算符 ->,就像訪問指向結(jié)構(gòu)的指針一樣。與所有的指針一樣,您必須在使用指針之前,對(duì)指針進(jìn)行初始化。

下面的實(shí)例有助于更好地理解指向類的指針的概念:

#include <iostream>
 
using namespace std;

class Box
{
   public:
      // 構(gòu)造函數(shù)定義
      Box(double l=2.0, double b=2.0, double h=2.0)
      {
         cout <<"Constructor called." << endl;
         length = l;
         breadth = b;
         height = h;
      }
      double Volume()
      {
         return length * breadth * height;
      }
   private:
      double length;     // Length of a box
      double breadth;    // Breadth of a box
      double height;     // Height of a box
};

int main(void)
{
   Box Box1(3.3, 1.2, 1.5);    // Declare box1
   Box Box2(8.5, 6.0, 2.0);    // Declare box2
   Box *ptrBox;                // Declare pointer to a class.

   // 保存第一個(gè)對(duì)象的地址
   ptrBox = &Box1;

   // 現(xiàn)在嘗試使用成員訪問運(yùn)算符來(lái)訪問成員
   cout << "Volume of Box1: " << ptrBox->Volume() << endl;

   // 保存第二個(gè)對(duì)象的地址
   ptrBox = &Box2;

   // 現(xiàn)在嘗試使用成員訪問運(yùn)算符來(lái)訪問成員
   cout << "Volume of Box2: " << ptrBox->Volume() << endl;
  
   return 0;
}

當(dāng)上面的代碼被編譯和執(zhí)行時(shí),它會(huì)產(chǎn)生下列結(jié)果:

Constructor called.
Constructor called.
Volume of Box1: 5.94
Volume of Box2: 102

C++ 類 & 對(duì)象 C++ 類 & 對(duì)象