gpt4 book ai didi

c# - 无法从 List 转换为 List

转载 作者:IT王子 更新时间:2023-10-29 04:07:02 30 4
gpt4 key购买 nike

我正在尝试传递 DerivedClass 的列表到接受 BaseClass 列表的函数,但我收到错误:

cannot convert from 
'System.Collections.Generic.List<ConsoleApplication1.DerivedClass>'
to
'System.Collections.Generic.List<ConsoleApplication1.BaseClass>'

现在我可以投 List<DerivedClass> 了到 List<BaseClass> ,但除非我明白为什么编译器不允许这样做,否则我觉得这样做不舒服。

我发现的解释只是说它以某种方式违反了类型安全,但我没有看到。谁能帮帮我?

编译器允许从 List<DerivedClass> 转换的风险是什么?至 List<BaseClass>


这是我的 SSCCE:

class Program
{
public static void Main()
{
BaseClass bc = new DerivedClass(); // works fine
List<BaseClass> bcl = new List<DerivedClass>(); // this line has an error

doSomething(new List<DerivedClass>()); // this line has an error
}

public void doSomething(List<BaseClass> bc)
{
// do something with bc
}
}

class BaseClass
{
}

class DerivedClass : BaseClass
{
}

最佳答案

是因为List<T>不变,而不是协变,所以你应该改为IEnumerable<T>支持协变:

IEnumerable<BaseClass> bcl = new List<DerivedClass>();

public void doSomething(IEnumerable<BaseClass> bc)
{
// do something with bc
}

关于covariant in generic的信息.

关于c# - 无法从 List<DerivedClass> 转换为 List<BaseClass>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16966961/

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