C#基础---IComparable用法,实现List<T&a…
2018-06-22 06:36:28来源:未知 阅读 ()
List<T>.sort()可以实现对T的排序,比如List<int>.sort()执行后集合会按照int从小到大排序。如果T是一个自定义的Object,可是我们想按照自己的方式来排序,那该怎么办呢,其实可以用过IComparable接口重写CompareTo方法来实现。流程如下:
一.第一步我们申明一个类Person但是要继承IComparable接口:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TestIComparable { public class Person : IComparable<Person> { public string Name { get; set; } public int Age { get; set; } public int CompareTo(Person obj) { int result; if (this.Name == obj.Name && this.Age == obj.Age) { result = 0; } else { if (this.Name.CompareTo(obj.Name) > 0) { result = 1; } else if (this.Name == obj.Name && this.Age > obj.Age) { result = 1; } else { result = -1; } } return result; } public override string ToString() { return this.Name + "-" + this.Age; } } }
二.然后在主函数里面调用sort方法即可.类就会按照姓名从小到大,如果姓名相同则按照年龄从小到大排序了。
public class Program { public static void Main(string[] args) { List<Person> lstPerson = new List<Person>(); lstPerson.Add(new Person(){ Name="Bob",Age=19}); lstPerson.Add(new Person(){ Name="Mary",Age=18}); lstPerson.Add(new Person() { Name = "Mary", Age = 17 }); lstPerson.Add(new Person(){ Name="Lily",Age=20}); lstPerson.Sort(); Console.ReadKey(); } }
三,如果不继承IComparable接口,我们该如何实现排序呢。可以使用Linq来实现。其实效果是一样的,只是如果类的集合要经常排序的话,建议使用继承接口的方法,这样可以简化sort的代码,而且更容易让人看懂。
public static void Main(string[] args) { List<Person> lstPerson = new List<Person>(); lstPerson.Add(new Person(){ Name="Bob",Age=19}); lstPerson.Add(new Person(){ Name="Mary",Age=18}); lstPerson.Add(new Person() { Name = "Mary", Age = 17 }); lstPerson.Add(new Person(){ Name="Lily",Age=20}); lstPerson.Sort((x,y) => { int result; if (x.Name == y.Name && x.Age == y.Age) { result = 0; } else { if (x.Name.CompareTo(y.Name) > 0) { result = 1; } else if (x.Name == y.Name && x.Age > y.Age) { result = 1; } else { result = -1; } } return result; }); Console.ReadKey(); }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
下一篇:ASP.NET中的另类控件
- 详解ASP.NET数据绑定操作中Repeater控件的用法 2020-01-18
- 详解ASP.NET中IsPostBack的用法 2019-12-15
- asp.net基础学习之前端页面布局 2019-11-30
- asp.net基础学习:控件的使用方法 2019-11-19
- 详解C#时间格式化的用法 2019-10-08
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash