博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Effective C++ -----条款10: 令operator=返回一个reference to *this
阅读量:4957 次
发布时间:2019-06-12

本文共 157 字,大约阅读时间需要 1 分钟。

比如:

Widget& operator=(const Widget& rhs)

{

  ...

  return* this;

}

令赋值(assignment)操作符返回一个reference to *this

转载于:https://www.cnblogs.com/wen-ge/p/4260507.html

你可能感兴趣的文章