定义一个接口shape,定义两个实现该接口的类(圆形类和长方形类),并在主类中使用这两个类的对象。

日期:2017-11-24 14:18:06 人气:3

定义一个接口shape,定义两个实现该接口的类(圆形类和长方形类),并在主类中使用这两个类的对象。

interface Shape { public double getArea(); } class Square implements Shape{ private double height=0;//长方形的边长 public Square(double height){ this.height=height; } public double getArea() { return (height*height); } } class Circle impleme
    A+
热门评论