我在 c# 中有这样的课程:
public class Foo
{
public static readonly int SIZE = 2;
private int[] array;
public Foo
{
array = new int[SIZE];
}
}
和Bar
类:
public class Bar : Foo
{
public static readonly int SIZE = 4;
}
我想要完成的是创建一个 Bar 实例,其数组大小取自覆盖SIZE
值。如何正确地做到这一点?