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.

10 lines
244 B

/**
* 图形抽象父类,定义统一的面积计算接口
*/
public abstract class Shape {
/**
* 抽象方法:计算图形面积,由子类具体实现
* @return 图形面积
*/
public abstract double getArea();
}