struct Position { int x; int y; Position(int xx=0,int yy=0):x(xx),y(yy){}; };
Position的构造函数,用xx初始化x,用yy初始化y