知识大全 C#数组排序与对象大小比较
Posted 知
篇首语:不怕读得少,只怕记不牢。本文由小常识网(cha138.com)小编为大家整理,主要介绍了知识大全 C#数组排序与对象大小比较相关的知识,希望对你有一定的参考价值。
C#数组排序与对象大小比较 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!
我们将介绍C#数组排序与对象大小比较 包括一些实例代码以及IComparable IComparable和IComparer三大接口的用法从个小例子开始
int[] intArray = new int[] Array Sort(intArray) Array ForEach<int>(intArray (i)=>Console WriteLine(i)) 这个例子定义了一个int数组 然后使用Array Sort(arr)静态方法对此数组进行排序 最后输出排序后的数组 以上例子将毫无意外的依次输出
为什么Array的Sort方法可以正确的对int数组进行排序呢 我们自定义类可以吗?试试看 如下代码
public class Student public int Age get set public string Name get set public int Score get set static void Main(string[] args)
Student[] students = new Student[] new Student()Age = Name= 张三 Score= new Student()Age = Name= 李四 Score= new Student()Age = Name= 王五 Score= new Student()Age = Name= 赵六 Score= new Student()Age = Name= 司马 Score= Console WriteLine( ——默认排序输出—— ) Array Sort(students) Array ForEach<Student>(students (s)=>Console WriteLine(string Format( 岁了 他的分数是 s Name s Age s Score))) Console Read() 我们定义了Student类然后同样对他的数组进行排序 程序正确的编译通过 但是运行出错 运行时抛出了异常 System InvalidOperationException Failed to pare o elements in the array 这个异常的InnerException是ArgumentException At least one object must implement IComparable 运行时异常说明 我们要使用Array Sort(arr)静态方法 必须得保证数组中有一个元素实现IComparable接口 既然如此我们就让Student类实现IComparable接口
public class Student IComparable public int Age get set public string Name get set public int Score get set /// <summary> /// 实现IComparable接口 用Age做比较/// </summary> /// <param name= obj >比较对象</param> /// <returns>比较结果</returns> public int CompareTo(object obj)
if (obj is Student)
return Age CompareTo(((Student)obj) Age) return 在Student类中实现了IComparable接口 在CompareTo方法中比较Student的Age属性 这一次再次编译运行 程序正常的输出了按照年龄排序的Student数组
假如说我们要对Student的Score属性进行排序该怎么办呢? Student类实现的IComparable接口只能按照一种属性排序呀
这个是很容易实现的 net的类库开发者早为我们准备了另一个接口IComparer<T>接口用来实现比较类型T的两个实例 如下StudentScoreComparer类实现了对Student按照Score属性比较的IComparer<Student>
public class StudentScoreComparer IComparer<Student> public int Compare(Student x Student y)
return x Score CompareTo(y Score) 现在我们可以使用下面代码对Student数组按照Score属性进行排序
Console WriteLine( ——按分数排序输出—— )
Array Sort(students new StudentScoreComparer())
Array ForEach<Student>(students (s) => Console WriteLine(string Format( 岁了 他的分数是 s Name s Age s Score)))
不过一个简单的按照Score属性排序 再定义一个类是不是有点大题小作呀 有没有更好的办法呢?当然有 为我们准备了比较对象大小的委托Comparison<T>我们可以使用拉姆达表达式或者匿名委托直接排序 如下代码实现
Console WriteLine( ——按分数排序输出—— ) Array Sort(students (s s ) => s Score CompareTo(s Score)) Array ForEach<Student>(students (s) => Console WriteLine(string Format( 岁了 他的分数是 s Name s Age s Score))) 完整代码示例如下
using System using System Collections Generic using System Linq using System Text namespace SortingInCSharp class Program public class Student IComparable public int Age get set public string Name get set public int Score get set /// <summary> /// 实现IComparable接口 用Age做比较/// </summary> /// <param name= obj >比较对象</param> /// <returns>比较结果</returns> public int CompareTo(object obj)
if (obj is Student)
return Age CompareTo(((Student)obj) Age) return static void Main(string[] args)
Student[] students = new Student[] new Student()Age = Name= 张三 Score= new Student()Age = Name= 李四 Score= new Student()Age = Name= 王五 Score= new Student()Age = Name= 赵六 Score= new Student()Age = Name= 司马 Score= Console WriteLine( ——默认排序输出—— ) Array Sort(students) Array ForEach<Student>(students (s) => Console WriteLine(string Format( 岁了 他的分数是 s Name s Age s Score))) Console WriteLine( ——按分数排序输出—— ) Array Sort(students new StudentScoreComparer()) Array ForEach<Student>(students (s) => Console WriteLine(string Format( 岁了 他的分数是 s Name s Age s Score))) Console WriteLine( ——按分数排序输出—— ) Array Sort(students (s s ) => s Score CompareTo(s Score)) Array ForEach<Student>(students (s) => Console WriteLine(string Format( 岁了 他的分数是 s Name s Age s Score))) Console Read() public class StudentScoreComparer IComparer<Student> public int Compare(Student x Student y)
return x Score CompareTo(y Score) 总结
cha138/Article/program/net/201311/11369相关参考
从事net工作两年当初学到的数据结构算法一直没有在实际工作中用到近日闲来无事突发奇想要温习一下简单的数据结构算法今日用了一个下午的时间完成了排序中的快速排序以此作为入驻博客园的首篇随笔!思想向后是
数据结构与算法之C#插入排序 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! usingSyste
使用环境和条件 有这样一种情况php里面的关联数组如果下面这样的数组数据 [php] $array=array( array( name=>xiao age=> ) a
c#学习体会:使用ref和out传递数组(downmoon)希望与大家分享与所有的out参数一样在使用数组类型的out参数前必须先为其赋值即必须由接受方为其赋值例如public stat
JavaScript对象与数组参考大全2 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!linksa
JavaScript对象与数组参考大全4 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!userAg
PHP数组排序函数 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!cha138/Artic
知识大全 PHP 冒泡排序 二分查找 顺序查找 二维数组排序算法函数的详解
PHP冒泡排序二分查找顺序查找二维数组排序算法函数的详解 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下
知识大全 DirectInfo.GetFiles返回数组的默认排序
DirectInfo.GetFiles返回数组的默认排序 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下
分析Java集合框架及数组的排序 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! &nbs