/** * */ package java151229; /** * @author lizheng * */ public interface Shape { /** * 获得面积的接口 */ void getArea(); }