编写一个接口Geometry,该接口有一个求面积的方法getArea()。用长方形类Recta
发布网友
发布时间:2022-04-25 19:52
我来回答
共1个回答
热心网友
时间:2023-10-14 17:54
public interface Geometry {
public int getArea();
}
class Rectangle implements Geometry {
private int width;//宽
private int high;//长
public Rectangle() {//空参构造
}
public Rectangle(int width, int high) {//有参构造
this.width = width;
this.high = high;
}
@Override
public int getArea() {
return width*high;//返回长方形的面积
}
}
//下面测试类可以单独写
class RectaTest {
public static void main(String[] args) {
Rectangle r = new Rectangle(23,10);//给width ,high赋值
System.out.println(r.getArea());//面积
}
}