c++ 1.给你一个类名,写他的copy constructor, operator ==, operator += 等的函数声明,不需要写实现。 Class A { Public: Int str; A(); A(const A &p); bool operator ==(const A &n, const A &m); A& operator +=(const A &n); };