码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2016-04-16 02:01:53      阅读:169      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!