覆盖抽象类的抽象成员

时间:2013-05-17 13:37:30

标签: c# inheritance override abstract-class abstract-data-type

我有一个基础抽象类BasePerson。我有另一个抽象类BaseStudent,它继承自BasePerson。这是一个例子。

public abstract class BasePerson
{
    public string Name{get;set;}
    public string LastName{get;set;}
    public abstract object this[string propertyName]{get;set;}
}

public abstract class BaseStudent : BasePerson
{
    public string Test{get;set;}
    //this class inherits from BasePerson and it forces to override the indexer.
    //I can do this:
    public override object this[string propertyName]
    {
        get{return null;} 
        set
        {
            //do stuff;
        }
    }
}

public class Student : StudentBase
{
    //other properties
}

现在我无法强制Student类覆盖索引器。我应该怎么做才能强制学生覆盖索引器?我无法从BasePerson类中删除索引器。

帮助表示赞赏!

1 个答案:

答案 0 :(得分:3)

如果你想强制它,请不要在BaseStudent上实现它。由于BaseStudentabstract,因此 不需要来实现abstract中的所有BasePerson成员。

public abstract class BasePerson
{
    public string Name{get;set;}
    public string LastName{get;set;}
    public abstract object this[string propertyName]{get;set;}
}

public abstract class BaseStudent : BasePerson
{
    public string Test{get;set;}
}

public class Student : BaseStudent
{
    //must implement it here since Student isn't abstract!
}

abstract类不需要定义所有继承类的abstract成员,因此您可以随意将责任传递给任何具体的类实现它。 Student未定义为abstract,因此必须实现其继承的基类链尚未实现的任何成员。