首先我們知道~
1 class Test 2 { 3 public: 4 Test() 5 { 6 return this; //回傳的當前物件的地址 7 } 8 Test&() 9 { 10 return *this; //回傳的是當前物件本身 11 } 12 Test() 13 { 14 return *this; //回傳的當前物件的克隆 15 } 16 private: //... 17 };
return *this回傳的是當前物件的克隆或者本身(若回傳型別為A, 則是拷貝, 若回傳型別為A&, 則是本身 ),
return this回傳當前物件的地址(指向當前物件的指標)
我們再來看看回傳拷貝那個的地址~
1 #include <iostream> 2 using namespace std; 3 class Test 4 { 5 public: 6 int x; 7 Test get() 8 { 9 return *this; //回傳當前物件的拷貝 10 } 11 }; 12 int main() 13 { 14 Test a; 15 a.x = 4; 16 if(a.x == a.get().x) 17 { 18 cout << a.x << endl; 19 cout << &a << endl; 20 cout << &a.get() <<endl; 21 } 22 else 23 { 24 cout << "no" << endl; 25 cout << &a << endl; 26 cout << &a.get() <<endl; 27 } 28 29 return 0; 30 }
由運行結果得知會報下列錯誤!!!
cpp [Error] taking address of temporary [-fpermissive]
這是因為參考了臨時物件的地址而引發的警報 臨時物件不可靠……
所有要注意!
轉載請註明出處,本文鏈接:https://www.uj5u.com/houduan/93379.html
標籤:C++
上一篇:【CSP-S膜你考】那23個路口
