为什么在c++中,return *this返回的是引用类型啊可以说一下使怎么回事吗[解决办法]*是一个dereference操作,*this返回的类型就是引用。参考《The C++ Programming Language》。