这是我的Java问题:
我的 Circle 类实现了 Shape 接口,因此它必须实现所有需要的方法。我对“测试形状的内部是否完全包含指定的 Rectangle2D”的方法 boolean contains(Rectangle2D r) 有疑问。现在, Rectangle2D 是一个抽象类,它不提供(据我所知)任何获取矩形角坐标的方法。更准确地说:“Rectangle2D 类描述了一个由位置 (x, y) 和尺寸 (wxh) 定义的矩形。该类只是所有存储 2D 矩形的对象的抽象超类。坐标的实际存储表示留给子类”。
那么我该如何解决呢?
请在下面找到我的代码的一部分:
public class Circle implements Shape
{
private double x, y, radius;
public Circle(double x, double y, double radius)
{
this.x = x;
this.y = y;
this.radius = radius;
}
// Tests if the specified coordinates are inside the boundary of the Shape
public boolean contains(double x, double y)
{
if (Math.pow(this.x-x, 2)+Math.pow(this.y-y, 2) < Math.pow(radius, 2))
{
return true;
}
else
{
return false;
}
}
// Tests if the interior of the Shape entirely contains the specified rectangular area
public boolean contains(double x, double y, double w, double h)
{
if (this.contains(x, y) && this.contains(x+w, y) && this.contains(x+w, y+h) && this.contains(x, y+h))
{
return true;
}
else
{
return false;
}
}
// Tests if a specified Point2D is inside the boundary of the Shape
public boolean contains(Point2D p)
{
if (this.contains(p.getX(), p.getY()))
{
return true;
}
else
{
return false;
}
}
// Tests if the interior of the Shape entirely contains the specified Rectangle2D
public boolean contains(Rectangle2D r)
{
// WHAT DO I DO HERE????
}
}