gpt4 book ai didi

c# - c#中的协方差

转载 作者:IT王子 更新时间:2023-10-29 04:42:22 25 4
gpt4 key购买 nike

是否可以转换 List<Subclass>List<Superclass>在 C# 4.0 中?

大致是这样的:

class joe : human {}

List<joe> joes = GetJoes();

List<human> humanJoes = joes;

这不就是协方差的作用吗?

如果你能做到:

human h = joe1 as human;

为什么你不能做

List<human> humans = joes as List<human>; 

做 (joe)humans[0] 是不合法的,因为那个项目已经被贬低了..每个人都会很高兴。现在唯一的选择是创建一个新的列表

最佳答案

你不能这样做,因为它不安全。考虑:

List<Joe> joes = GetJoes();    
List<Human> humanJoes = joes;
humanJoes.Clear();
humanJoes.Add(new Fred());
Joe joe = joes[0];

显然最后一行(如果不是更早的话)必须失败 - 作为 Fred不是 Joe . List<T>的不变性在编译而不是执行时防止这个错误。

关于c# - c#中的协方差,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4038125/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com