//设计一个计数器counter,用类成员重载自增运算符实现计数器的自增,用友元重载实现计数器的自减。 #include using namespace std; class Counter{ private: int n; public: Counter(int i=0):n(i){}; Counter operator++(); Counter operator++(int); friend Counter operator--(Counter &c); friend Counter operator--(Counter &c,int); void display(); }; Counter Counter::operator++(){ ++n; return *this; } Counter Counter::operator++(int){ n++; return *this; } Counter operator--(Counter &c){ --c.n; return c; } Counter operator--(Counter &c,int){ c.n--; return c; } void Counter::display(){ cout<<"counter number="<