以下のようなコードを書いたところ、unique_ptrの値が消失しました。
unique_ptrを戻り値として返却するのはまずい行為でしょうか。
(なぜか今回のコードは出力がうまくいきました)
cpp
1#include <iostream> 2#include <vector> 3#include <string> 4#include <memory> 5 6using namespace std; 7 8class X 9{ 10 int _a; 11public: 12 X() = default; 13 X(int a) { _a = a; }; 14 static decltype(auto) cp_ptr() { 15 unique_ptr<X> init_ptr(new X(100)); 16 return init_ptr; 17 } 18 auto out() { cout << _a << endl; } 19}; 20 21unique_ptr<X> x; 22 23auto f() 24{ 25 x = X::cp_ptr(); 26} 27 28int main() 29{ 30 x = nullptr; 31 32 f(); 33 34 // ここで値が消失 35 36 x->out(); 37 38 system("Pause"); 39}
回答1件
あなたの回答
tips
プレビュー