Java基础 接口实现 设计一个形状类(接口)Shape,方法:求周长和求面积

题目:
设计一个形状类(接口)Shape,方法:求周长和求面积形状类(接口)的子类(实现类);:Rect(矩形),Circle(圆形)Rect类的子类:Square(正方形)不同的子类会有不同的计算周长和面积的方法。
创建三个不同的形状对象,放在Shape类型的数组里,分别打印出每个对象的周长和面积。

形状接口

public interface Shape {
   
	// 求面积方法
	double getArea();

	// 求周长方法
	double getPerimeter();
}

圆形类

public class Circle implements Shape {
   
	private final double PI = 3.14;  //圆周率
	private double r;   //半径

	public double getR() {
   
		return r;
	}
	public void setR(double r) {
   
		this.r = r;
	}
	public Circle(double r) {
   
		this.r = r;
	}

	@Override
	public double getArea() {
   
		// TODO Auto-generated method stub
		return PI * r * r;
	}

	@Override
	public double getPerimeter() {
   
		// TODO Auto-generated method stub
		return PI * r * 2;
	}
}

矩形类

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.height = height;
		this.width = width;
	}

	@Override
	public double getArea() {
   
		// TODO Auto-generated method stub
		return width * height;
	}

	@Override
	public double getPerimeter() {
   
		// TODO Auto-generated method stub
		return 2 * (width + height);
	}
}

正方形,继承矩形

public class Square extends Rect {
   
	public Square(double width) {
   
		super(width);
	}

	@Override
	public double getArea() {
   
		// TODO Auto-generated method stub
		return getWidth() * getWidth();
	}

	@Override
	public double getPerimeter() {
   
		// TODO Auto-generated method stub
		return 4 * getWidth();
	}
}

测试类

public class Test {
   

	public static void main(String[] args) {
   

		Shape[] shape = new Shape[3];
		shape[0] = new Circle(3);

		System.out.println("========圆形周长和面积========");
		System.out.println(String.format("%.2f", shape[0].getArea()));
		System.out.println(shape[0].getPerimeter());

		shape[1] = new Rect(5, 8);
		System.out.println("========矩形周长和面积========");
		System.out.println(shape[1].getArea());
		System.out.println(shape[1].getPerimeter());

		shape[2] = new Square(5);
		System.out.println("========正方形周长和面积========");
		System.out.println(shape[2].getArea());
		System.out.println(shape[2].getPerimeter());
	}
}

每天进步一点点!

全部评论

相关推荐

AFBUFYGRFHJLP:直接去美帝试试看全奖phd吧
点赞 评论 收藏
分享
一个菜鸡罢了:哥们,感觉你的简历还是有点问题的,我提几点建议,看看能不能提供一点帮助 1. ”新余学院“别加粗,课程不清楚是否有必要写,感觉版面不如拿来写一下做过的事情,教育经历是你的弱势就尽量少写 2. “干部及社团经历”和“自我评价”删掉 3. 论文后面的“录用”和“小修”啥的都删掉,默认全录用,问了再说,反正小修毕业前肯定能发出来 4. 工作经验和研究成果没有体现你的个人贡献,着重包装一下个人贡献
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务