polymorphism for properties specified by interfaces(由接口指定的属性的多态性)
问题描述
为什么这不起作用?
public class ClassOptions {}
public interface Inode {
ClassOptions Options {get;}
}
public class MyClass : Inode {
public ClassOptions Options { get; set; }
}
public class ClassDerivedOptions : ClassOptions {
}
public class MyDerivedClass : Inode {
public ClassDerivedOptions Options { get; set; } << does not implement INode...
}
[ 编译器消息告诉我为什么它会中断,但我想知道编译器为什么不让它通过的原因 - 如果有任何解决方法?- 谢谢]
[ the compiler message tells me why it breaks but i'd like to know the reasoning behind why the compiler doesnt let this through - also if there are any work arounds? - thanks]
推荐答案
它不起作用,因为 INode 接口显式调用 ClassOptions 类型的 Options 属性.C# 不支持返回类型协方差(这是您在本例中所要求的).
It doesn't work because the INode interface explicitly calls for an Options property of type ClassOptions. C# doesn't support return type covariance (which is what you're asking for in this case).
对于它的价值,Microsoft Connect 上还有一个专门针对返回类型协方差的语言功能请求:
For what it's worth, there's also a language feature request on Microsoft Connect specifically for return type covariance:
需要 C#/所有 .NET 语言中的协变返回类型
如果您查看该页面,他们还提到常见的解决方法是使用显式接口实现:
If you look at the page, they also mention that the common work-around is to use Explicit Interface Implementation:
public class MyDerivedClass : INode
{
public ClassDerivedOptions Options { get; set; }
public ClassOptions INode.Options { get { return Options; } }
}
这篇关于由接口指定的属性的多态性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:由接口指定的属性的多态性


- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 输入按键事件处理程序 2022-01-01