首页 > 其他 > 详细

使用多态求矩形的面积和周长以及圆形的面积和周长

时间:2016-04-16 02:01:07      阅读:223      评论:0      收藏:0      [点我收藏+]

//使用多态求矩形的面积和周长以及圆形的面积我周长

Shape shape = new Circle(5); //new Square(5,6);
double area = shape.GetArea();
double perimeter = shape.GetPerimeter();
Console.WriteLine(" 这个形状的面积是{0},周长是{1}",area,perimeter);
Console.ReadKey();

}

public abstract class Shape
{

 


public abstract double GetArea();
public abstract double GetPerimeter();

}




public class Circle : Shape
{
private double _r;
public double R
{
get { return _r; }
set { _r = value; }
}

public Circle(double r)
{

this.R = r;
}


public override double GetArea()
{
return Math.PI * this.R * this.R;
}
public override double GetPerimeter()
{
return 2*Math.PI*this.R;
}
}

public class Square : Shape
{
private double _height;
public double Height
{
get { return _height; }
set { _height = value; }

}
private double _width;
public double Width
{
get { return _width; }
set { _width = value; }
}

public Square(double height, double width)
{
this.Height = height;
this.Width = width;
}
public override double GetArea()
{
return this.Height * this.Width;
}
public override double GetPerimeter()
{
return (this.Height+this.Width)*2;
}
}

使用多态求矩形的面积和周长以及圆形的面积和周长

原文:http://www.cnblogs.com/swlq/p/5397436.html

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