Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
this->functionが何をするかは理解していますが、私が見ているコードには function_name(*this,param1,param2) があり、それが何をすべきかを明確にするつもりはありません。
作業中のオブジェクトへのポインターと関数への 2 つのパラメーターを渡していますか?
あなたの機能:
function_name(*this,param1,param2)
最初のパラメーターとして、TまたはT&(またはconst T&) を取ります (with T= オブジェクトの型がthis指す)。ポインターthisは逆参照されており、他のポインターと同様に、式はが*x指す値を指していxます。
T
T&
const T&
this
*x
x