C#对集合进行排序
先来看看下面List
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CustomerSort{class Program{static void Main(string[] args){List
输出结果:
文章图片
从上面的截图中可以看出,Sort()方法默认按照元素的大小进行从小到大的排序,为什么调用Sort()方法就能按照元素的大小进行从小到大的排序呢?其实现原理是什么呢?我们能不能自定义排序规则呢?带着这些问题,我们先来看看Sort()方法的定义,在Sort()方法上面按F12转到定义:
文章图片
从截图中可以看出,Sort()方法使用了几个重载的方法。可以传递给它的参数有泛型委托Comparison
1、定义一个Student类,包括姓名和分数两个属性,可以按照姓名或分数进行排序,Student类定义如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CustomerSort{public class Student{public string Name { get;
set;
}public double Score { get;
set;
}}}
2、在定义一个枚举,表示排序的种类,即是按照Name排序还是按照Score排序:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CustomerSort{/// /// 排序的种类/// public enum CompareType{Name,Score}}
3、实现IComparer接口
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CustomerSort{/// /// StudentComparer自定义排序规则类实现IComparable接口/// public class StudentComparer : IComparer{private CompareType _compareType;
/// /// 通过构造函数给_compareType赋值/// /// public StudentComparer(CompareType compareType){_compareType = compareType;
}/// /// 实现IComparer接口的Compare/// /// ///
4、在Main()方法中调用:
先按照Name进行排序:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CustomerSort{class Program{static void Main(string[] args){//List
结果:
文章图片
在按照Score进行排序:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CustomerSort{class Program{static void Main(string[] args){//List
结果:
文章图片
【C#对集合进行排序】到此这篇关于C#对集合进行排序的文章就介绍到这了。希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
推荐阅读
- vue2+vant2 使用rem进行浏览器适配
- C#学习笔记|C#学习笔记(函数初始)
- pytorch|pytorch中对维度及其squeeze()、unsqueeze()函数的理解
- 17个实用的JavaScript数组和对象的方法
- mybatis返回key|mybatis返回key value map集合方式
- Web端网站兼容性测试如何进行(来看看浏览器的兼容性测试要点)
- Spring|Spring Cloud Gateway actuator组建对外暴露RCE问题漏洞分析
- 基于Pinpoint对SpringCloud微服务项目实现全链路监控的问题
- XML 、DTD以及YAML的解释、对比
- 扩展我们的分析处理服务(Smartly.io)(使用|扩展我们的分析处理服务(Smartly.io):使用 Citus 对 PostgreSQL 数据库进行分片)