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.
|
|
/**
|
|
|
* 图形抽象基类:统一多态入口,具体面积由子类实现。
|
|
|
*/
|
|
|
public abstract class Shape {
|
|
|
|
|
|
/**
|
|
|
* @return 图形面积(具体单位由子类语义决定,如平方厘米)
|
|
|
*/
|
|
|
public abstract double getArea();
|
|
|
}
|
|
|
|