String::String(const String &&other) // 得分点:输入参数为const型 { m_data = other.data; other.data = nullptr; } 大佬大佬,这里other是不是有误,应该不能是const类型吧