C++ this指針
在C++中每一個對象具有通稱為該指針的重要指針訪問其自己的地址。this指針是一個隱含參數,所有的成員函數。因此,一個成員函數內部中,這可以用來指調用對象。
友元函數冇有this指針,因為友元不是一類的成員。隻有成員函數才有this指針。
讓我們試試下麵的例子來理解 this 指針的概念:
#include <iostream> using namespace std; class Box { public: // Constructor definition 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