为什么我不能通过它的接口(ItestClass)访问基类(testClass)属性? 我创建了接口以避免实际的Control(winforms / wpf)属性在第三个类(newClass)中可见。如果那不可能有更好的方法吗?
public class testClass : Control, ItestClass
{
public int Property1 { set; get; }
public int Property2 { set; get; }
public testClass() { }
}
public interface ItestClass
{
int Property1 { get; set; }
int Property2 { get; set; }
}
public class newClass : ItestClass
{
public newClass()
{
// Why are the following statements are not possible?
Property1 = 1;
// OR
this.Property1 = 1;
}
}
答案 0 :(得分:5)
界面实际上并没有实现这些属性 - 你仍然需要在实现类中定义它们:
public class newClass : ItestClass
{
int Property1 { get; set; }
int Property2 { get; set; }
// ...
}
修改强>
C#不支持多重继承,因此您无法testClass
继承Control
和另一个具体类。不过,你总是可以使用构图。例如:
public interface ItestClassProps
{
public ItestClass TestClassProps { get; set; }
}
public class testClass : Control, ItestClassProps
{
public ItestClass TestClassProps { set; get; }
public testClass() { }
}