精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

C++ this 指針

c++ this 指針

c++ 類和對象c++ 類和對象

在 c++ 中,每一個對象都能通過 this 指針來訪問自己的地址。this 指針是所有成員函數的隱含參數。因此,在成員函數內部,它可以用來指向調用對象。

友元函數沒有 this 指針,因為友元不是類的成員。只有成員函數才有 this 指針。

下面的實例有助于更好地理解 this 指針的概念:

#include <iostream>
 
using namespace std;

class box
{
   public:
      // 構造函數定義
      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;
      }
      int compare(box box)
      {
         return this->volume() > box.volume();
      }
   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

   if(box1.compare(box2))
   {
      cout << "box2 is smaller than box1" <<endl;
   }
   else
   {
      cout << "box2 is equal to or larger than box1" <<endl;
   }
   return 0;
}

當上面的代碼被編譯和執行時,它會產生下列結果:

constructor called.
constructor called.
box2 is equal to or larger than box1

c++ 類和對象c++ 類和對象

下一節:c++ 指向類的指針

c++ 簡介

相關文章
C++基礎