找最大图形面积 (抽象方法)
Posted luckyBrown
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了找最大图形面积 (抽象方法)相关的知识,希望对你有一定的参考价值。
//最大图形的面积 public class ShapeTest { public static void main(String[] args) { Shape[] shapes = new Shape[4]; shapes[0] = new Square(1); shapes[1] = new Square(2); shapes[2] = new Circle(1); shapes[3] = new Circle(2); maxArea(shapes); } public static void maxArea(Shape[] Shapes){ double max = Shapes[0].area(); int maxIndex = 0; for(int i=1;i<Shapes.length;i++){ double area = Shapes[i].area(); if(area>max){ max=area; maxIndex=i; } } System.out.println("最大面积为:"+max+",所在下标为:"+maxIndex); } } abstract class Shape{ protected double c; public abstract double area(); } class Square extends Shape{ public Square(double c){ this.c=c; } public double area(){ return 0.0625*c*c; //0.0796 } } class Circle extends Shape{ public Circle(double c){ this.c=c; } public double area(){ return 0.0796*c*c; } }
以上是关于找最大图形面积 (抽象方法)的主要内容,如果未能解决你的问题,请参考以下文章
编写一个程序计算“三角形、正方形、圆形"三种图形的面积,求:a)抽象出一个基类base b)在其中
1.编写一个接口ShapePara,要求: 接口中的方法: double getArea():获得图形的面积。double getCircumference():获得图形的周长 编写一个圆