C++ this 指針
c++ this 指針
在 c++ 中,每一個對象都能通過 this 指針來訪問自己的地址。this 指針是所有成員函數(shù)的隱含參數(shù)。因此,在成員函數(shù)內(nèi)部,它可以用來指向調(diào)用對象。
友元函數(shù)沒有 this 指針,因為友元不是類的成員。只有成員函數(shù)才有 this 指針。
下面的實例有助于更好地理解 this 指針的概念:
#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; } 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; }
當(dāng)上面的代碼被編譯和執(zhí)行時,它會產(chǎn)生下列結(jié)果:
constructor called. constructor called. box2 is equal to or larger than box1