gpt4 book ai didi

c# - 无法推断 Lambda 表达式类型参数

转载 作者:太空宇宙 更新时间:2023-11-03 19:41:12 26 4
gpt4 key购买 nike

有人可以帮助我理解以下示例中实际发生的事情,以便我以后可以钓鱼 自己..理解为什么会出现错误或如何解决它无需简单地重写...

给定这个方法方法:

public static void DoNothing(string v)
{
// do nothing
}

尝试像这样执行它,会产生错误“无法推断方法的类型参数。尝试明确指定类型参数。”:

myList.Select(x => DoNothing(x)); // does not work
var r = myList.Select(x => DoNothing(x)); // just a ?

然而,一旦它返回一些东西,即:

private static string ReturnString(string v)
{
return v;
}

这很好用:

myList.Select(x => ReturnString(x)); // works
var r = myList.Select(x => ReturnString(x)); // IEnumerable<string>

所以我猜这与 void 返回类型有关?

我能不能因为没有返回任何东西而永远无法工作,或者是否有一些我缺少/无法弄清楚的神奇语法(!)

我似乎只有这样才能让它发挥作用:

foreach (var item in myList)
{
DoNothing(item); // works fine.
}

提前致谢!

最佳答案

Select method期望其中的 lambda 表达式返回值。因为 DoNothing(v) 是一个 void 方法,所以它根本不返回任何内容。

错误消息来自一般推理,它会尝试根据其中表达式的结果确定通过调用 Select 生成的变量类型。但是由于没有返回类型(void 不算),它会提示。

想象一下,如果您链​​接了另一个 SelectWhere 调用它:

myList.Select(x => DoNothing(x)).Where(v => ????); //what is "v" here? void? That doesn't work

var value = myList.Select(x => DoNothing(x)).First(); //what is "value" here? void?

所以你可以看到它是如何行不通的。

一旦您将其更新为调用 ReturnString,则推理会在 string 返回类型上进行,一切都很好。

myList.Select(x => ReturnString(x)).Where(v => v == "Hello World!"); // "v" is a string here, everything is fine.

string value = myList.Select(x => ReturnString(x)).First(); //what is "value" here? It's a "string" type as specified by "ReturnString"

关于c# - 无法推断 Lambda 表达式类型参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53193776/

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