二维平面上的点类Point的问题
设计一个表示二维平面上的点类Point,包括表示坐标位置的protected类型的成员变量x和Y,获取和设置x和y值的public方法
class Point
{
protected int x;
protected int y;
public void setX(int x)
{
this.x = x;
}
public void setY(int y)
{
this.y = y;
}
public int getX()
{
return this.x;
}
public int getY()
{
return this.y;
}
}