public abstract class Shape { // 计算面积的抽象方法 public abstract double getArea(); }