现存的CPoint ;类就可以
class Point{int x,y;friend Point operator ++(point&);friend Point operator --(point&);};Point operator++(Point &op){++op.x;++op.y;}Point operator--(Point &op{--op.x;--op.y;}