方法一: std::unique_ptr getHello() { char* str = new char[12]; strcpy( str, "HelloWorld\n" ); return std::unique_ptr (str); } ...
確定! 回上一頁