Cpp_Primer_Answers
Cpp_Primer_Answers copied to clipboard
练习13.50有错误
应该只有一个地方避免了拷贝
Mystring baz()
{
Mystring ret("world");
return ret; // avoided
}