gpt4 book ai didi

c# - 在 C# 中连接 Lambda 函数

转载 作者:IT王子 更新时间:2023-10-29 04:15:26 27 4
gpt4 key购买 nike

我想使用 C# 3.5 构建一个谓词,逐个发送到 where 子句。我创建了一个非常简单的控制台应用程序来说明我得到的解决方案。这非常有效。绝对完美。但我不知道如何或为什么。

    public static Func<Tran, bool> GetPredicate()
{
Func<Tran, bool> predicate = null;
predicate += t => t.Response == "00";
predicate += t => t.Amount < 100;
return predicate;
}

当我说“predicate +=”时,那是什么意思?谓词 -= 似乎什么都不做,编译器不喜欢 ^=、&=、*=、/=。

编译器也不喜欢'predicate = predicate + t => t.Response....'。

我遇到了什么问题?我知道它的作用,但它是如何做到的?

如果有人想深入研究更复杂的 lambda,请这样做。

最佳答案

“delegate += method”是多播委托(delegate)的运算符,用于将方法组合到委托(delegate)中。另一方面,“delegate -= method”是从委托(delegate)中删除方法的运算符。它对 Action 很有用。

Action action = Method1;
action += Method2;
action += Method3;
action -= Method2;
action();

在这种情况下,只有 Method1 和 Method3 会运行,Method2 不会运行,因为您在调用委托(delegate)之前删除了方法。

如果将多播委托(delegate)与 Func 一起使用,结果将是最后一个方法。

Func<int> func = () => 1;
func += () => 2;
func += () => 3;
int result = func();

在这种情况下,结果将为 3,因为方法“() => 3”是添加到委托(delegate)中的最后一个方法。无论如何,所有的方法都会被调用。

在您的情况下,方法“t => t.Amount < 100”将有效。

如果你想组合谓词,我建议这些扩展方法。

public static Func<T, bool> AndAlso<T>(
this Func<T, bool> predicate1,
Func<T, bool> predicate2)
{
return arg => predicate1(arg) && predicate2(arg);
}

public static Func<T, bool> OrElse<T>(
this Func<T, bool> predicate1,
Func<T, bool> predicate2)
{
return arg => predicate1(arg) || predicate2(arg);
}

用法

public static Func<Tran, bool> GetPredicate() {
Func<Tran, bool> predicate = null;
predicate = t => t.Response == "00";
predicate = predicate.AndAlso(t => t.Amount < 100);
return predicate;
}

编辑:按照 Keith 的建议更正扩展方法的名称。

关于c# - 在 C# 中连接 Lambda 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/491780/

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