1

Java教程中有一个“实现接口”的例子。我已经重复了这个例子,但它不起作用。RectanglePlusNetBeans 在类声明的左侧显示错误。错误是:

rectangleplus.RectanglePlus 不是抽象的,不会覆盖 rectangleplus.Relatable 中的抽象方法 isLargerThan(rectangleplus.Relatable)

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

  1. 该项目的名称是RectanglePlus
  2. 包的名称是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;
   }
}

为什么教程示例中没有提到抽象?教程示例应该在没有 mitakes 的情况下工作吗?

谢谢你。

4

2 回答 2

5

在接口中,您声明了方法isLarger,但在您声明的类中将isLargerThan一个更改为另一个名称,它会正常运行。

于 2012-05-15T13:50:47.683 回答
3

您没有正确实现接口isLarger()中的方法Relatable。重命名该isLargerThan(Relatable other)方法,使其看起来像这样:

@Override
int isLarger(Relatable other) {
}

使用注释是个好主意@Override,它可以让您捕捉到问题中的错误。

于 2012-05-15T13:50:57.757 回答