为了账号安全,请及时绑定邮箱和手机立即绑定

linq学习笔记:int数组中找出偶数

标签:
C#

本例演示了如何从一个int数组中找出偶数,并将结果从大小到排序

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

namespace LinqDemo
{

    class Program
    {
        static int[] numbers = { 1, 3, 4, 5, 6, 7, 8, 9, 10, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11 };

        static void Main(string[] args)
        {
            Traditonal();
            Console.WriteLine("----------------------");
            LinqMethod();
            Console.ReadLine();

           

        }



        /**//// <summary>
        /// 传统写法
        /// </summary>

        static void Traditonal() 
        {
            
            List<int> SelectedNumbers = new List<int>();
            foreach (int i in numbers)
            {
                if (i % 2==0)
                {
                    SelectedNumbers.Add(i);                    

                }
               
            }
           
            
            SelectedNumbers.Sort(SortDesc); //.net1.0写法           
            for (int i = 0; i < SelectedNumbers.Count; i++)
            {
                Console.WriteLine(SelectedNumbers[i]);
            }

            
        }



        /**//// <summary>
        /// 逆顺排序(配合传统写法)
        /// </summary>
        /// <param name="x"></param>
        /// <param name="y"></param>
        /// <returns>1(x大于y),0(x等于y),-1(x小于y)</returns>

        static int SortDesc(int x,int y) 
        {
            //if (x < y) 
            //{
            //    return 1;
            //}
            //else if (x == y)
            //{
            //    return 0;
            //}
            //else 
            //{
            //    return -1;
            //}//也可以简写为下面的一行
            return y - x;

        }


        /**//// <summary>
        /// Linq的写法
        /// </summary>

        static void LinqMethod() 
        {
            
            var SelectedNumbers = from number in numbers where (number % 2 == 0) orderby number descending select number;
            foreach (var i in SelectedNumbers)
            {
                Console.WriteLine(i);
            }
           

        }



       
    }

}

可以看出用Linq写法,代码更简洁

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消