誰かが呼び出しtest(2)
後にオブジェクトが破壊される理由を知ることができますか?test_method()
#include<iostream>
#include<string>
using namespace std;
class test
{
int n;
public:
test(int n) : n(n)
{
cout << "test: " << n << endl;
}
~test()
{
cout << "~test: " << n << endl;
}
test & test_method()
{
cout << "test_method: " << n << endl;
return *this;
}
};
int main(int argc, const char *argv[])
{
cout << "main start" << endl;
const test &test1 = test(1);
const test &test2 = test(2).test_method();
cout << "main end" << endl;
}
出力は次のとおりです。
main start
test: 1
test: 2
test_method: 2
~test: 2
main end
~test: 1