作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我定义了 3 个接口(interface):
public interface IManufacturerInput
{
}
public interface IManufacturerOutput
{
}
public interface IManufacturerApi<in S, out T>
where S : IManufacturerInput
where T : IManufacturerOutput
{
T Calculate(S);
}
然后我定义了一个特定的制造商:
public class ManufacturerAInput : IManufacturerInput
{
}
public class ManufacturerAOutput : IManufacturerOutput
{
}
public class ManufacturerAApi : IManufacturerApi<ManufacturerAInput, ManufacturerAOutput>
{
public ManufacturerAOutput Calculate(ManufacturerAInput)
{
return null;
}
}
在 Main() 中,我创建了一个 ManufacturerAApi,并尝试将其分配给 IManufacturerApi。
IManufacturerApi<IManufacturerInput, IManufacturerOutput> api = new ManufacturerAApi();
但是失败了。错误信息说(只是抽象的意思):
Can't convert from ManufacturerAApi to IManufacturerApi<IManufacturerInput, IManufacturerOutput>
那么有什么方法可以使作业生效吗?提前致谢。
最佳答案
您提出的建议不是类型安全的。让我们更改您的类型的名称以使问题更清楚:
public interface IPetFood { }
public interface IPetSound { }
public interface IPetCage<in S, out T>
where S : IPetFood
where T : IPetSound
{
T Feed(S s);
}
public class DogFood : IPetFood { }
public class CatFood : IPetFood { }
public class Bark : IPetSound { }
public class DogCage : IPetCage<DogFood, Bark>
{
public Bark Feed(DogFood input)
{
return new Bark();
}
}
现在假设这是合法的:
IPetCage<IPetFood, IPetSound> api = new DogCage();
然后我们可以做以下事情:
api.Feed(new CatFood()); //oops we've just given the dog some catfood.
赋值将不起作用,因为 S
是逆变的,这意味着传递给 api.Feed
的任何可能的 IPetFood
都需要是一个DogFood
的子类型,你有相反的; IPetFood
是 DogFood
的超集。
关于c# - 将子类分配给接口(interface),涉及泛型和协变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43112852/
在我的设置中,我试图有一个界面 Table继承自 Map (因为它主要用作 map 的包装器)。两个类继承自 Table - 本地和全局。全局的将有一个可变的映射,而本地的将有一个只有本地条目的映射。
Rust Nomicon 有 an entire section on variance除了关于 Box 的这一小节,我或多或少地理解了这一点和 Vec在 T 上(共同)变体. Box and Vec
我是一名优秀的程序员,十分优秀!