lambda-基于谓词筛选值序列

Posted chenh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lambda-基于谓词筛选值序列相关的知识,希望对你有一定的参考价值。

此方法通过使用延迟执行实现。 即时返回值为一个对象,该对象存储执行操作所需的所有信息。 只有通过直接调用对象的 GetEnumerator 方法或使用 Visual C# 中的 foreach(或 Visual Basic 中的 For Each)来枚举该对象时,才执行此方法表示的查询。

在查询表达式语法中,where (Visual C#) 或 Where (Visual Basic) 子句转换为 Where<TSource>(IEnumerable<TSource>, Func<TSource, Boolean>) 的一个调用。

结合例子看下效果:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace LambdaTest
{
    class Program
    {
        static void Main(string[] args)
        {
            List<int> list = new List<int>();
            list.AddRange(new int[] { 7, 6, 10, 1, 2, 3, 4, 5, 8 });

            Func<int, bool> fi = new Func<int, bool>(MoreThan5);
            IEnumerator<int> ie = list.Where<int>(fi).GetEnumerator();

            //效果与list.Where<int>(fi).GetEnumerator()一致
            //IEnumerator<int> ie = list.Where<int>(x => x > 5).GetEnumerator();

            //效果与list.Where<int>(fi).GetEnumerator()一致
            //IEnumerator<int> ie = list.Where(delegate(int i){return i > 5;}).GetEnumerator();

            while (ie.MoveNext())
            {
                Console.WriteLine(ie.Current.ToString());
            }

            Console.ReadKey();
        }

        public static bool MoreThan5(int i)
        {
            return i > 5;
        }
    }
}

Func<T,TResult>泛型委托在此代码中的的参数int,返回值类型为bool。

以上是关于lambda-基于谓词筛选值序列的主要内容,如果未能解决你的问题,请参考以下文章

R语言基于glmnet构建Logistic回归模型使用L1正则化并可视化系数及最佳lambda值

附加 QueryDSL 谓词或基于过滤器值构建谓词

分配谓词变量而不是 lambda 表达式

java [Java Lambda - 谓词或示例] #java

20180720 (lambda匿名函数,sorded()排序函数,filter()筛选函数,map()映射函数,递归,二分函数)

可感知 tz 的日期时间序列在 pandas 系列应用(lambda)操作中产生基于 UTC 的 .date() 输出