我有一个基础抽象类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
类中删除索引器。
帮助表示赞赏!
答案 0 :(得分:3)
如果你想强制它,请不要在BaseStudent
上实现它。由于BaseStudent
为abstract
,因此 不需要来实现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
,因此必须实现其继承的基类链尚未实现的任何成员。