Java父类Shape

package com.itheima;

public class Shape {
    public double  getArea()
    {
         return 1.0;
    }
}

原文地址:https://www.cnblogs.com/AmosAlbert/p/12832370.html