条款 10:令 operator= 返回一个 reference to *this

《Effective C++ 中文版 第三版》读书笔记

** 条款 10:令 operator= 返回一个 reference to *this **

Toby& operator=(const Toby& t)
{
    ...
    return *this;
}

这只是个协议,并无强制性。然而这分协议被所有内置和标准程序库提供的类型,如:string、vector 等共同遵守。

请记住:
** 令 operator= 返回一个 reference to *this **

你可能感兴趣的:(条款 10:令 operator= 返回一个 reference to *this)