這個指標
this
指標是 C++的關鍵字,因此不需要庫來實現它。不要忘記 this
是一個指標! 所以你做不到:
this.someMember();
當你使用箭頭符號 ->
從指標訪問成員函式或成員變數時:
this->someMember();
其他有用的連結可以更好地理解 this
指標:
http://www.geeksforgeeks.org/this-pointer-in-c/
https://www.tutorialspoint.com/cplusplus/cpp_this_pointer.htm