「this」ポインターの操作はコンストラクターを呼び出しますか?
次のように定義されたコンストラクターがあります
Cents(int cents)
{
cout<<"in cents constructor\n";
m_cents = cents;
}
friend Cents operator + (const Cents &c1, const Cents &c2)
{
return Cents(c1.m_cents + c2.m_cents);
}
Cents operator ++ (int)
{
cout<<"In c++ function\n";
Cents c(m_cents);
*this = *this + 1 ;
return c;
}
主な機能では、次のようなものがあります...
Cents c;
cout<<"Before post incrementing\n";
c++; //This part is calling the constructor thrice
今、次のような操作を行っているとし*this = *this + 1
ます。このコンストラクターを 2 回呼び出します。
ここで何が起こっているのか。*this
一時オブジェクトを作成し、その値を元のオブジェクトに割り当てますか?