Cpp_Primer_Answers icon indicating copy to clipboard operation
Cpp_Primer_Answers copied to clipboard

练习12.33 get_file编写有误

Open yu2014ol opened this issue 6 years ago • 1 comments

file本身就是一个智能指针了,直接return即可。 答案中用make_shared,但是编写有误,不能用file初始化此对象,要用也是用*file。

yu2014ol avatar Aug 19 '19 04:08 yu2014ol

shared_ptr<vector<string>> get_file() const { return make_shared<vector<string>>(*file); }

SonwJune avatar Apr 11 '20 12:04 SonwJune