求周长和求面积

本文介绍了一个设计思路,通过创建一个形状接口Shape,包含求周长和求面积的方法。接着,实现该接口的三个子类:矩形(Rect)、圆形(Circle)和正方形(Square),并在测试类Test中进行功能验证。
摘要由CSDN通过智能技术生成

1.设计一个形状类(接口)Shape,方法:求周长和求面积
形状类(接口)的子类(实现类):

package com.hp.demo7;
 
//接口
public interface Shape {
    //计算面积的方法
    double getArea();
 
    //计算周长的方法
    double getPerimeter();
}

2. Rect(矩形)

package com.hp.demo7;
//设计一个形状类(接口)Shape,方法:求周长和求面积
//形状类
//矩形类
public class Rect implements Shape{
    private double width; //宽度
    private double height; //高
 
    public double getWidth() {
        return width;
    }
 
    public void setWidth(double width) {
        this.width = width;
    }
 
    public double getHeight() {
        return height;
    }
 
    public void setHeight(double height) {
        this.height = height;
    }
 
    //一个有参构造,将用于子类正方形
    public Rect(double width){
        this.width = width;
    }
 
    //有参构造
    public Rect(double width, double height) {
        this.width = width;
        this.height = height;
    }
 
    @Override
    publi
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值