美文网首页C++ 杂记
条款 10:令 operator= 返回一个 reference

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

作者: 赵者也 | 来源:发表于2017-07-21 20:11 被阅读4次

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

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

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

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

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

相关文章

网友评论

    本文标题:条款 10:令 operator= 返回一个 reference

    本文链接:https://www.haomeiwen.com/subject/mgzekxtx.html