在一个函数中想要返回 this 指针,需注意函数的返回值与返回 this 指针的类型是否一致。 this 为 Type *const 类型, 而* this 为 Type 类型。 一般在函数使用 * this 来替代调用其的对象。