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.

12 lines
401 B

public class ShapeUtil {
public static void printArea(Shape shape) {
if (shape == null) {
System.out.println("错误:图形对象为空");
return;
}
System.out.println("图形类型:" + shape.getShapeName());
System.out.println("面积:" + shape.getArea());
System.out.println("------------------------");
}
}