私は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;
}
私が達成したいのは、オーバーライドされたSIZE
値から配列サイズを取得して Bar インスタンスを作成することです。適切に行う方法は?