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.

13 lines
271 B

package com.trae.shape;
/**
* 形状抽象类
* 定义了所有形状都必须实现的面积计算方法
*/
public abstract class Shape {
/**
* 计算形状面积的抽象方法
* @return 形状的面积
*/
public abstract double getArea();
}