class Point {
public:
Point(int xx=0 , int yy=0) { //这里的int xx=0和int yy=0替换为int xx,int yy是不是也没有影响。 x = xx; y = yy; }
private:
int x, y;
};