You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
372 B

/**
* 图形抽象基类:统一多态入口,具体面积由子类实现。
*/
public abstract class Shape {
/**
* @return 图形面积(具体单位由子类语义决定,如平方厘米)
*/
public abstract double getArea();
/**
* 绘制图形
*/
public void draw() {
System.out.println("绘制图形");
}
}