编译代码时出现三个错误。 1.使用通用类型List需要1个参数。 2.使用通用类型List需要1个参数。 3. foreach语句无法对类型的变量进行操作,因为List不包含“ GetEnumerator”的公共定义
“多态”示例程序如下。
namespace PolymorExample
{
abstract class Shape
{
public abstract void area();
}
class Rectangle : Shape
{
private double length;
private double width;
public Rectangle(double length, double width)
{
this.length = length;
this.width = width;
}
public override void area()
{
Console.WriteLine("Rectangel Area: {0}", length * width);
}
}
class Triangle : Shape
{
private double baseline;
private double height;
public Triangle(double baseline, double height)
{
this.baseline = baseline;
this.height = height;
}
public override void area()
{
Console.WriteLine("Triangel Area: {0}", baseline * height / 2.0);
}
}
class Circle : Shape
{
const double PI = 3.14;
private double radius;
public Circle(double radius)
{
this.radius = radius;
}
public override void area()
{
Console.WriteLine("Circle Area: {0}", radius * radius * PI);
}
}
public class TestShape
{
static void Main()
{
List shapes = new List();
Shape shape1 = new Rectangle(10, 10);
shapes.Add(shape1);
shapes.Add(new Circle(10));
shapes.Add(new Triangle(10, 10));
shapes.Add(new Circle(20));
foreach (Shape s in shapes)
{
s.area();
}
Console.Read();
}
}
}
答案 0 :(得分:3)
如果查看List<T>
class的文档,您会注意到List
是generic类型(因此是<T>
)和泛型类型需要一个(或多个)参数来指定它将使用/包含的对象的类型。您必须指定 some 类型,即使它只是object
。
在您的情况下,您有Shape
个对象的列表,因此可以修改初始化代码(并通过使用集合初始化器语法对其进行简化)以指定该类型:
var shapes = new List<Shape>
{
new Rectangle(10, 10),
new Circle(10),
new Triangle(10, 10),
new Circle(20)
};
答案 1 :(得分:1)
List<Shape> shapes = new List<Shape>();
您需要在列表声明中使用形状类型,以便其知道列表的内容