比如:
Widget& operator=(const Widget& rhs)
{
...
return* this;
}
令赋值(assignment)操作符返回一个reference to *this
本文共 157 字,大约阅读时间需要 1 分钟。
比如:
Widget& operator=(const Widget& rhs)
{
...
return* this;
}
令赋值(assignment)操作符返回一个reference to *this
转载于:https://www.cnblogs.com/wen-ge/p/4260507.html