5
const参照クラスのメンバーは一時的なオブジェクトの寿命を延ばしますか?
これはなぜですか: #include <string> #include <iostream> using namespace std; class Sandbox { public: Sandbox(const string& n) : member(n) {} const string& member; }; int main() { Sandbox sandbox(string("four")); cout << "The answer is: " << sandbox.member << endl; return 0; } 出力を与える: 答えは: の代わりに: 答えは:4