std:: unique_ptr<int[]> p(new int[10]); // OK std::shared_ptr<int[]> p(new int[10]); ... #include <fstream> //for ofstream #include <memory> //for shared_ptr ...
確定! 回上一頁