定义一个抽象基类Shape

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

腾讯文库定义一个抽象基类Shape定义一个抽象基类Shape