Java教程中有一个“实现接口”的例子。我已经重复了这个例子,但它不起作用。RectanglePlus
NetBeans 在类声明的左侧显示错误。错误是:
rectangleplus.RectanglePlus 不是抽象的,不会覆盖 rectangleplus.Relatable 中的抽象方法 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;
}
}
为什么教程示例中没有提到抽象?教程示例应该在没有 mitakes 的情况下工作吗?
谢谢你。