Java教程中有一个example of "Implementing an Interface"。我已经重复了这个例子,但是没有用。 NetBeans在RectanglePlus类声明的左侧显示错误。错误是:


  radiusplus.RectanglePlus不是抽象的,不会覆盖
  抽象方法isLargerThan(rectangleplus.Relatable)在
  矩形相关


我做的和教程中写的一样。为什么显示错误?这是我对该项目的实施。


项目的名称是RectanglePlus
程序包的名称为rectangleplus


项目中的第一个文件是Interface Relatable

package rectangleplus;

public interface Relatable {
   int isLarger(Relatable other);
}


项目中的第二个文件是主类RectanglePlus和辅助类Point

package rectangleplus;

public class RectanglePlus implements Relatable {

    public int width = 0;
    public int height = 0;
    public Point origin;

    // four constructors
    public RectanglePlus() {
        origin = new Point(0, 0);
    }
    public RectanglePlus(Point p) {
        origin = p;
    }
    public RectanglePlus(int w, int h) {
        origin = new Point(0, 0);
        width = w;
        height = h;
    }
    public RectanglePlus(Point p, int w, int h) {
        origin = p;
        width = w;
        height = h;
    }

    // a method for moving the rectangle
    public void move(int x, int y) {
        origin.x = x;
        origin.y = y;
    }

    // a method for computing
    // the area of the rectangle
    public int getArea() {
        return width * height;
    }

    // a method required to implement
    // the Relatable interface
    public int isLargerThan(Relatable other) {
        RectanglePlus otherRect
            = (RectanglePlus)other;
        if (this.getArea() < otherRect.getArea())
            return -1;
        else if (this.getArea() > otherRect.getArea())
            return 1;
        else
            return 0;
    }

   public static void main(String[] args) {
      // TODO code application logic here
   }
}

class Point {
   int top;
   int left;
   int x;
   int y;

   public Point(int t, int l) {
      top = t;
      left = l;
   }
}


为什么本教程示例中没有提到抽象?教程示例是否应该没有错误地工作?

谢谢。

最佳答案

在接口中,您声明方法isLarger,但在类中,您声明isLargerThan将一个更改为另一个名称,它将很好用。

10-04 13:59