作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
为什么下面会导致编译错误?
interface IX {}
interface IY {}
class XY : IX, IY {}
void Foo<T>() where T : IX, IY
{
T xy = new XY();
… // ^^^^^^^^
} // error: "Implicit conversion of type 'XY' to 'T' is not possible."
注意:如果 class XY : IX
和 where T : IX
也会出现同样的错误。但是,我选择了一个更复杂的示例,因为一个更简单的示例可能会引发规避性的答案,例如,“只需将 xy
的类型从 T
更改为 IX
",它不会回答此转换失败的原因。
最佳答案
因为如果那是合法的,那么您可以这样做:
interface IPet {}
interface IMammal {}
class Dog : IPet, IMammal {}
class Cat : IPet, IMammal {}
T Foo<T>() where T : IPet, IMammal
{
return new Dog();
}
...
Cat cat = Foo<Cat>(); // Assigns a Dog to a variable of type Cat.
关于c# - 为什么不允许从 "class A : IX"到通用 "T where T : IX"的转换?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9436516/
我是一名优秀的程序员,十分优秀!