huangmingchuan / Cpp_Primer_Answers

《C++ Primer》第五版中文版习题答案

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

练习13.50有错误

MATRIXKOO opened this issue · comments

应该只有一个地方避免了拷贝

Mystring baz()
{
	Mystring ret("world");
	return ret; // avoided
}