C# LING查询语法学习,扩展方法的使用

class Program
{
    #region  示例1:不使用LINQ查询数组

    //static void Main(string[] args)
    //{
    //    int[] nums = { 1, 7, 2, 6, 5, 4, 9, 13, 20 };
    //    List<int> list = new List<int>();
    //    foreach (int item in nums)
    //    {
    //        if (item % 2 != 0)
    //            list.Add(item);
    //    }
    //    list.Sort();
    //    //  list.Reverse();
    //    foreach (int item in list)
    //    {
    //        Console.WriteLine(item);
    //    }

    //    Console.ReadLine();
    //}

    #endregion

    #region 示例2:使用LINQ技术查询数组

    //static void Main(string[] args)
    //{
    //    int[] nums = { 1, 7, 2, 6, 5, 4, 9, 13, 20 };

    //    var list = from num in nums
    //               where num % 2 != 0
    //               orderby num descending
    //               select num;

    //    foreach (int item in list)
    //    {
    //        Console.WriteLine(item);
    //    }
    //    Console.ReadLine();
    //}

    #endregion

    #region 示例3:扩展方法Select()应用

    //static void Main(string[] args)
    //{
    //    int[] nums = { 1, 7, 2, 6, 5, 4, 9, 13, 20 };

    //    var list = nums.Select(item => item * item);
    //    foreach (int item in list)
    //    {
    //        Console.WriteLine(item);
    //    }

    //    Console.ReadLine();
    //}

    #endregion

    #region  示例4:扩展方法Where()应用

    //static void Main(string[] args)
    //{
    //    int[] nums = { 1, 7, 2, 6, 5, 4, 9, 13, 20 };

    //    var list = nums
    //        .Where(item => item % 2 == 0)
    //        .Select(i => i * i);
    //    foreach (int item in list)
    //    {
    //        Console.WriteLine(item);
    //    }
    //    Console.ReadLine();
    //}

    #endregion

    #region 示例5:扩展方法OrderBy()应用

    //static void Main(string[] args)
    //{
    //    int[] nums = { 1, 7, 2, 6, 5, 4, 9, 13, 20 };
    //    var list = nums
    //        .Where(item => item % 2 == 0)
    //        .Select(i => i * i)
    //        .OrderBy(item => item);
    //    foreach (int i in list)
    //    {
    //        Console.WriteLine(i);
    //    }

    //    Console.ReadLine();
    //}

    //static void Main(string[] args)
    //{
    //    string[] nums = { "张勇", "王琦", "刘静", "赵鑫鑫",
    //                        "杜丽", "马俊才", "那英", "成龙", };

    //    var list = nums
    //        .Where(item => item.Length == 2)
    //        .Select(item => item)
    //        .OrderByDescending(item => item.Substring(0, 1));
    //    foreach (string item in list)
    //    {
    //        Console.WriteLine(item);
    //    }

    //    Console.ReadLine();
    //}

    #endregion

    #region 示例6:扩展方法GroupBy()应用
    //static void Main(string[] args)
    //{
    //    string[] nums = { "张勇", "王琦", "刘静", "赵鑫鑫",
    //                        "杜丽", "马俊才", "那英", "成龙","王丽", "杜宇","马晓","刘丽","马大哈",};

    //    var list = nums
    //        .Where(item => item.Length == 2)
    //        .Select(item => item)        
    //        .GroupBy(item => item.Substring(0, 1));

    //    foreach (var groupItem in list)
    //    {
    //        Console.WriteLine("-------------------");
    //        Console.WriteLine("分组字段:{0}", groupItem.Key);

    //        foreach (var item in groupItem)
    //        {
    //            Console.WriteLine(item);
    //        }
    //    }

    //    Console.ReadLine();
    //}

    #endregion

    #region  示例7:断点调试LINQ的查询时机
    //static void Main(string[] args)
    //{
    //    int[] nums = { 1, 7, 2, 6, 5, 4, 9, 13, 20 };

    //    var list = nums
    //        .Where(item => item % 2 == 0)
    //        .Select(item => item * item)
    //        .OrderBy(item => item);

    //    foreach (int i in list)
    //    {
    //        Console.WriteLine(i);
    //    }
    //    Console.ReadLine();
    //}

    #endregion

    #region 示例8:查询的立即执行

    //static void Main(string[] args)
    //{
    //    int[] nums = { 1, 7, 2, 6, 5, 4, 9, 13, 20 };

    //    var list = nums
    //        .Where(item => item % 2 == 0)
    //        .Select(item => item * item)
    //        .OrderBy(item => item)
    //        .Count();

    //    Console.WriteLine(list.ToString());
    //    Console.ReadLine();
    //}

    #endregion

    #region  示例9:from子句的简单使用

    //static void Main(string[] args)
    //{
    //    ArrayList values = new ArrayList();
    //    for (int i = 0; i < 10; i++)
    //    { values.Add(i); }
    //    var list = from int item in values
    //               where item % 2 == 0
    //               select item;
    //    foreach (int item in list) 
    //    { Console.WriteLine(item); }
    //    Console.ReadLine();
    //}

    #endregion

    #region 示例10:复合from子句的使用

    //static void Main(string[] args)
    //{
    //    Student obj1 = new Student()
    //    {
    //        StuId = 1001,
    //        StuName = "学员1",
    //        ScoreList = new List<int>() { 90, 78, 54 }
    //    };
    //    Student obj2 = new Student()
    //    {
    //        StuId = 1002,
    //        StuName = "学员2",
    //        ScoreList = new List<int>() { 95, 88, 90 }
    //    };
    //    Student obj3 = new Student()
    //    {
    //        StuId = 1003,
    //        StuName = "学员3",
    //        ScoreList = new List<int>() { 79, 76, 89 }
    //    };
    //    将学员封装到集合中
    //    List<Student> stuList = new List<Student>() { obj1, obj2, obj3 };
    //    查询成绩包含95分以上的学员
    //    var result = from stu in stuList
    //                 from score in stu.ScoreList
    //                 where score >= 90
    //                 select stu;
    //    显示查询结果
    //    foreach (var item in result)
    //    {
    //        Console.WriteLine(item.StuName);
    //    }


    //    Console.ReadLine();
    //}

    #endregion

    #region 示例11:多个from子句查询的使用

    //static void Main(string[] args)
    //{
    //    Student obj1 = new Student() { StuId = 1001, StuName = "学员1" };
    //    Student obj2 = new Student() { StuId = 1009, StuName = "学员9" };
    //    Student obj3 = new Student() { StuId = 1012, StuName = "学员12" };
    //    Student obj4 = new Student() { StuId = 1003, StuName = "学员3" };
    //    Student obj5 = new Student() { StuId = 1019, StuName = "学员19" };
    //    Student obj6 = new Student() { StuId = 1006, StuName = "学员6" };

    //    List<Student> stuList1 = new List<Student>() { obj1, obj2, obj3 };
    //    List<Student> stuList2 = new List<Student>() { obj4, obj5, obj6 };

    //    //查询学号大于1010的学员
    //    var result = from stu1 in stuList1
    //                 where stu1.StuId >= 1010
    //                 from stu2 in stuList2
    //                 where stu2.StuId >= 1010
    //                 select new { stu1, stu2 };
    //    //显示查询结果
    //    foreach (var item in result)
    //    {
    //        Console.WriteLine(item.stu1.StuName + "   " + item.stu1.StuId);
    //        Console.WriteLine(item.stu2.StuName + "   " + item.stu2.StuId);
    //    }

    //    Console.ReadLine();
    //}

    #endregion

    #region 示例12:聚合函数Count

    //static void Main(string[] args)
    //{
    //    Student obj1 = new Student() { StuId = 1001, StuName = "学员1" };
    //    Student obj2 = new Student() { StuId = 1009, StuName = "学员9" };
    //    Student obj3 = new Student() { StuId = 1012, StuName = "学员12" };
    //    Student obj4 = new Student() { StuId = 1003, StuName = "学员3" };
    //    Student obj5 = new Student() { StuId = 1019, StuName = "学员19" };
    //    Student obj6 = new Student() { StuId = 1006, StuName = "学员6" };
    //    List<Student> stuList = new List<Student>() { obj1, obj2, obj3, obj4, obj5, obj6 };

    //    var count1 = (from c in stuList
    //                  where c.StuId > 1010
    //                  select c).Count();

    //    var count2 = stuList.Where(c => c.StuId > 1010).Count();
    //    Console.WriteLine("count1={0}  count2={1}", count1, count2);


    //    Console.ReadLine();
    //}
    #endregion

    #region 示例13:聚合函数Max、Min、Average

    //static void Main(string[] args)
    //{
    //    Student obj1 = new Student() { StuId = 1001, Age = 22, StuName = "学员1" };
    //    Student obj2 = new Student() { StuId = 1009, Age = 21, StuName = "学员9" };
    //    Student obj3 = new Student() { StuId = 1012, Age = 25, StuName = "学员12" };
    //    Student obj4 = new Student() { StuId = 1003, Age = 23, StuName = "学员3" };
    //    Student obj5 = new Student() { StuId = 1019, Age = 27, StuName = "学员19" };
    //    Student obj6 = new Student() { StuId = 1006, Age = 24, StuName = "学员6" };
    //    List<Student> stuList = new List<Student>() { obj1, obj2, obj3, obj4, obj5, obj6 };

    //    var maxAge = (from s in stuList
    //                  select s.Age).Max();
    //    var minAge = stuList
    //              .Select(s => s.Age).Min();
    //    var avgAge = (from s in stuList
    //                  select s.Age).Average();
    //    var sumAge = (from s in stuList
    //                  select s.Age).Sum();

    //    Console.WriteLine("maxAge={0} minAge={1} avgAge={2} sumAge={3}",
    //        maxAge, minAge, avgAge, sumAge);

    //    Console.ReadLine();
    //}

    #endregion

    #region 示例14:排序类ThenBy的使用

    //static void Main(string[] args)
    //{

    //    Student obj1 = new Student() { StuId = 1001, Age = 22, StuName = "学员1" };
    //    Student obj2 = new Student() { StuId = 1009, Age = 21, StuName = "学员9" };
    //    Student obj3 = new Student() { StuId = 1012, Age = 25, StuName = "学员12" };
    //    Student obj4 = new Student() { StuId = 1003, Age = 23, StuName = "学员3" };
    //    Student obj5 = new Student() { StuId = 1019, Age = 27, StuName = "学员19" };
    //    Student obj6 = new Student() { StuId = 1006, Age = 24, StuName = "学员6" };
    //    List<Student> stuList = new List<Student>() { obj1, obj2, obj3, obj4, obj5, obj6 };

    //    var stus1 = from s in stuList
    //                orderby s.StuName, s.Age, s.StuId
    //                select s;

    //    var stus2 = stuList
    //        .OrderBy(s => s.StuName)
    //        .ThenBy(s => s.Age)
    //        .ThenBy(s => s.StuId)
    //        .Select(p => p);

    //    foreach (var s in stus1)
    //    {
    //        Console.WriteLine(s.StuName);
    //    }

    //    Console.WriteLine("----------------------");

    //    foreach (var s in stus2)
    //    {
    //        Console.WriteLine(s.StuName);
    //    }

    //    Console.ReadLine();
    //}

    #endregion

    #region 示例15:分区类查询
    //static void Main(string[] args)
    //{
    //    int[] nums = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };

    //    //Skip方法用于跳过序列中指定数量的元素,并返回剩余的元素
    //    //Take方法用于从序列中获取指定数量的元素
    //    //SkipWhile方法用于跳过序列中满足指定条件的元素,直到遇到第一个不满足条件的元素为止
    //    //用于从序列的开头开始返回满足指定条件的元素,直到遇到第一个不满足条件的元素为止
    //    var list1 = nums.Skip(1).Take(3);
    //    var list2 = nums.SkipWhile(i => i % 3 != 0)
    //                     .TakeWhile(i => i % 2 != 0);

    //    foreach (var item in list1) { Console.WriteLine(item); }
    //    Console.WriteLine("------------");
    //    foreach (var item in list2) { Console.WriteLine(item); }

    //    Console.ReadLine();
    //}

    #endregion

    #region 示例16:集合类查询Distinct

    //static void Main(string[] args)
    //{
    //    int[] nums = { 1, 2, 2, 6, 5, 6, 7, 8, 8 };

    //    //使用LINQ的Distinct方法可以从集合中筛选出不重复元素
    //    var list = nums.Distinct();

    //    foreach (var item in list) { Console.WriteLine(item); }

    //    Console.ReadLine();
    //}

    #endregion

    #region  示例17:生成类查询

    static void Main(string[] args)
    {
        //Enumerable.Range方法用于生成一个指定范围内的整数序列

        // Enumerable.Repeat方法用于创建一个包含指定元素重复多次的序列。它接受两个参数:要重复的元素和重复次数
        var nums1 = Enumerable.Range(1, 10);
        var nums2 = Enumerable.Repeat("LINQ best!", 10);

        foreach (var item in nums1) { Console.WriteLine(item); }
        Console.WriteLine("------------");
        foreach (var item in nums2) { Console.WriteLine(item); }


        Console.ReadLine();
    }

    #endregion
}

 class Student
 {
     public int StuId { get; set; }
     public int Age { get; set; }
     public string StuName { get; set; }
     public List<int> ScoreList { get; set; }

 }

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/650586.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Genome-wide association studies in R

全基因组关联&#xff08;GWA&#xff09;研究扫描整个物种基因组&#xff0c;寻找多达数百万个SNPs与特定感兴趣特征之间的关联。值得注意的是&#xff0c;感兴趣的性状实际上可以是归因于群体的任何类型的表型&#xff0c;无论是定性的&#xff08;例如疾病状态&#xff09;还…

支持IPv4与IPv6双协议栈的串口服务器,IPv6串口服务器

物联网是啥玩意儿&#xff1f;这是首先要搞明白的。按照百度百科的说法&#xff0c;是将各种信息传感设备&#xff0c;如射频识别&#xff08;RFID&#xff09;装置、红外感应器、全球定位系统、激光扫描器等种种装置与互联网结合起来而形成的一个巨大网络。这个说法有些复杂&a…

Java入门高频考查基础知识7-深入挖掘Java集合框架的奇幻世界2(39题2.8万字参考答案)

Java 集合是 Java 编程中至关重要的组成部分&#xff0c;它为开发者提供了丰富、灵活、高效的数据结构和算法。无论是初学者还是有经验的开发者&#xff0c;在使用 Java 进行编程时都会频繁地接触到集合框架。这篇文章将深入探讨 Java 集合的重要性&#xff0c;以及为什么它对于…

简单记录一下如何安装python以及pycharm(图文教程)(可供福建专升本理工类同学使用)

本教程主要给不懂计算机的或者刚刚开始学习python的同学&#xff08;福建专升本理工类&#xff09;&网友学习使用&#xff0c;基础操作&#xff0c;比较详细&#xff0c;其他问题等待补充&#xff01; 安装Python 1.进入python官网&#xff08;https://www.python.org/&a…

【Vue】1-3、Webpack 中的 loader

一、概述 在实际开发过程中&#xff0c;webpack 默认只能打包处理以 .js 后缀结尾的模块。 其他的非 .js 后缀名结尾的模块 webpack 默认处理不了&#xff0c;需要调用 loader 加载器才可以正常打包&#xff0c;否则会报错&#xff01; loader 加载器的作用&#xff1a;协助…

Unity 命令模式(实例详解)

文章目录 示例1&#xff1a;基础命令类结构示例2&#xff1a;旋转对象命令示例3&#xff1a;增加道具命令示例4&#xff1a;切换场景命令示例5&#xff1a;播放音效命令 在Unity中使用命令模式&#xff08;Command Pattern&#xff09;是一种常见的设计模式&#xff0c;用于实现…

在Python中的集合是什么

目录 创建集合 集合的特性 集合的基本操作 集合的运算 集合的遍历和判断元素是否存在 总结 在Python中&#xff0c;集合&#xff08;Set&#xff09;是一个内置的数据类型&#xff0c;用于存储不重复的元素集合。集合的特点是元素是无序的&#xff0c;且每个元素是唯一的…

C语言-算法-背包

[USACO07DEC] Charm Bracelet S&#xff08;01背包&#xff09; 题目描述 Bessie has gone to the mall’s jewelry store and spies a charm bracelet. Of course, she’d like to fill it with the best charms possible from the N (1 ≤ N ≤ 3,402) available charms. E…

apt-mark详解

文章目录 1、简介2、apt-mark auto packagename3、apt-mark manual4、apt-mark hold5、apt-mark unhold6、apt-mark showauto7、apt-mark showmanual8、apt-mark showhold 1、简介 apt-mark常用于标记一个包是否是自动安装的。 2、apt-mark auto packagename 标记一个包为自…

ssh异常报错:Did not receive identification string from

一、问题描述 某次外出在异地工作场所xshell炼乳远程服务器时&#xff0c;报错&#xff1a;Connection closed by foreign host. D&#xff0c;服务器查看secure日志或sshd服务状态会显示&#xff1a;id not receive identification string from client_ip; 二、分析处理 1&a…

多表查询,

1&#xff0c;多表查询 实际开发中&#xff0c;一个项目通常需要很多张表才能完成。例如:一个商城项目就需要分类表(category)、商品表(products)、订单表(orders)等多张表。且这些表的数据之间存在一定的关系&#xff0c;接下来我们将在单表的基础上&#xff0c;一起学习多表…

如何在前端项目里接入Sentry监控系统并通过企业微信通知

能不能让用户录个屏过来呀&#xff1f; 用户使用的是什么机型的手机&#xff1f; 用户使用的什么浏览器呀&#xff1f; 用户的网络是什么情况&#xff1f; … … 线上出现问题时&#xff0c;技术部和业务部同学之间的对话诸如此类…业务同学也很栓Q呀&#xff0c;硬着头皮去问客…

element-UI上传文件后valid提示不消失

问题描述&#xff1a;上传文件完成后&#xff0c;必填信息提示不消失 解决方法&#xff1a;在<el-form-item>标签添加show-message属性&#xff0c;字段为空时才显示提示信息 <el-form-item :prop"fileList" :show-message"!form.fileList || !form.f…

OPEN NT 4.5 编译方法和源代码下载

OPEN NT 4.5&#xff08;源代码编译方法&#xff09; 编译Windows NT 4.0到操作系统的详细方法 OPEN 4.5 ​​​​​​下载 &#xff1a;https://download.csdn.net/download/MYMOTOE6/88786570 ISO https://download.csdn.net/download/MYMOTOE6/88786572 OPEN NT 4.5&#…

LeetCode:1701. 平均等待时间(Java 模拟)

目录 1701. 平均等待时间 题目描述&#xff1a; 实现代码与解析&#xff1a; 简单模拟 原理思路&#xff1a; 1701. 平均等待时间 题目描述&#xff1a; 有一个餐厅&#xff0c;只有一位厨师。你有一个顾客数组 customers &#xff0c;其中 customers[i] [arrivali, time…

为什么网页打开慢?是服务器的问题吗?

当我们遇到网页加载缓慢时&#xff0c;首先想到的可能是服务器的问题。的确&#xff0c;服务器是影响网页加载速度的一个重要因素。然而&#xff0c;这并非是唯一的原因。实际上&#xff0c;网页加载速度受多种因素影响&#xff0c;包括但不限于服务器、网络带宽、DNS解析时间、…

c# cad2016选择封闭多段线获取多段线面积

在C#中&#xff0c;如果你想要通过AutoCAD .NET API来选择封闭多段线内部的其他闭合多段线并计算它们各自的面积&#xff0c;可以遵循以下基本步骤&#xff1a; 1、加载AutoCAD库&#xff1a; 确保你的C#项目引用了Autodesk.AutoCAD.Interop和Autodesk.AutoCAD.Interop.Common…

短视频批量抽帧怎么做

随着短视频的流行&#xff0c;越来越多的创作者需要处理大量的视频素材。其中&#xff0c;批量抽帧是一项常见的需求&#xff0c;它可以帮助我们快速提取视频中的关键帧&#xff0c;以便进行后续的处理或分析。那么&#xff0c;如何高效地进行短视频批量抽帧呢&#xff1f;接下…

微信开发者工具 git 拉取 failed invalid authentication scheme

微信开发者工具 git 拉取 failed invalid authentication scheme 拉取代码时报错,无效身份认证 解决方案: 1.检查git地址是否正常 2.检查git用户名密码是否正确

什么工具能将视频转成gif?分享一个在线制作gif网站

Gif动图看起来效果非常的炫酷&#xff0c;也很复杂。这种gif动图制作起来是不是也很麻烦呢&#xff1f;其实制作gif动画的方法非常的简单&#xff0c;不用下载软件&#xff0c;小白也能操作。只需要使用在线制作gif&#xff08;https://www.gif.cn/&#xff09;工具-GIF中文网&…