标签: c++ copy bit-manipulation variable-assignment dereference
我想知道是否
*this = *that
会将'that'按位分配给'this',或者为'this'类调用赋值运算符。
谢谢!
答案 0 :(得分:3)
它调用赋值运算符,如this->operator=(*that);。
this->operator=(*that);