定义一个抽象基类Shape
//定义一个抽象基类Shape,其中包含area方法abstract class Shape { public abstract double area();}//定义Cirele并且继承Shape类
定义一个抽象基类Shape