奇妙な動作を示すプログラムがあります
#include <cstdlib>
#include <iostream>
using namespace std;
class man{
int i ;
public:
man(){
i=23;
cout << "\n defaul constructir called\t"<< i<<"\n";
}
man (const man & X) {
i = 24;
cout << "\n COPY constructir called\t"<< i<<"\n";
}
man & operator = (man x ) {
i = 25;
cout << "\n = operator called\t"<< i<<"\n";
return *this;
}
};
int main(int argc, char *argv[])
{
man x;
cout <<"\n ----------\n";
man y = x;
cout <<"\n ----------\n";
x=y;
return 0;
}
に示す出力
defaul constructir called 23
----------
COPY constructir called 24
----------
COPY constructir called 24
= operator called 25
この出力は、 x=y の 3 回目の呼び出しでは奇妙です。
新しいオブジェクトを作成せずに古いオブジェクトを操作しているときに呼び出されるコピー コンストラクターの余分な出力があるのはなぜですか。
一時的なオブジェクトが間にあるためですか?はいの場合、ここで停止できますか....