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
364 B
12 lines
364 B
/**
|
|
* 图形工具类,提供统一的面积打印方法
|
|
*/
|
|
public class ShapeUtil {
|
|
/**
|
|
* 统一打印图形面积的方法,支持所有Shape子类
|
|
* @param shape 图形对象(Circle/Rectangle/Triangle)
|
|
*/
|
|
public static void printArea(Shape shape) {
|
|
System.out.println("该图形的面积为:" + shape.getArea());
|
|
}
|
|
}
|