首页 > 编程语言 > 详细

java面向抽象编程样例

时间:2015-10-30 20:37:55      阅读:294      评论:0      收藏:0      [点我收藏+]

import java.util.*;
 abstract class Geometry{
    public abstract double getArea();
    
}
 class Pillar{
    Geometry bottom;
    double height;
    Pillar(Geometry bottom ,double height){
        this.bottom=bottom;
        this.height=height;
        
    }
    public double getVolume(){
        return bottom.getArea()*height;
    }
}

 class Circle extends Geometry{
    double r;
    Circle(double r){
        
        this.r=r;
        
    }
    public double getArea(){
        return(3.14*r*r);
    }
}

 class Rectangle extends Geometry{
    double a,b;
    Rectangle(double a,double b){
        
        this.a=a;
        this.b=b;
    }
    public double getArea(){
        return(a*b);
    }
}

public class Main {
       public static void main(String args[]){
           Pillar pillar;
           Geometry bottom;
           bottom =new Rectangle(12,22);
           pillar=new Pillar(bottom,58);
           System.out.println("矩形的面积"+pillar.getVolume());
           
           bottom=new Circle(10);
           pillar=new Pillar(bottom,58);
           System.out.println("圆柱的体积"+pillar.getVolume());
       }
}

java面向抽象编程样例

原文:http://www.cnblogs.com/13224ACMer/p/4924199.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!