一時オブジェクトの寿命 1.リファレンス一時オブジェクトの寿命 ・リファレンスに対する初期設定子の一部として使われた場合、そのリファレンスと同じだけ生存する。(ARM12.2) 別の言い方をするとconst参照は一時オブジェクトを束縛する。 list-1 cppll3724 #include <iostream> #include <string> using namespace std; string createString() { return "Safe"; } int main() { const string& x = createString(); cout << "x = " << x << "\n"; return 0; }