C#基础之数组排序、对象大小比较实现代码

前端之家收集整理的这篇文章主要介绍了C#基础之数组排序、对象大小比较实现代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
从个小例子开始:

int[] intArray = new int[]{2,3,6,1,4,5};
Array.Sort(intArray);
Array.ForEach<int>(intArray,(i)=>Console.WriteLine(i));

这个例子定义了一个int数组,然后使用Array.Sort(arr)静态方法对此数组进行排序,最后输出排序后的数组。以上例子将毫无意外的依次输出1,2,3,4,5,6.
为什么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 = 10,Name="张三",score=70},
new Student(){Age = 12,Name="李四",score=97},
new Student(){Age = 11,Name="王五",score=80},
new Student(){Age = 9,Name="赵六",score=66},Name="司马",score=90},
};
Console.WriteLine("--------------默认排序输出--------");
Array.Sort(students);
Array.ForEach<Student>(students,(s)=>Console.WriteLine(string.Format("{0}{1,2}岁了,他的分数是{2,3}",s.Name,s.Age,s.score)));
Console.Read();
}

我们定义了Student类然后同样对他的数组进行排序,程序正确的编译通过,但是运行出错,运行时抛出了异常:System.InvalidOperationException{"Failed to compare two 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 1;
}
}

在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("{0}{1,s.score)));

不过一个简单的按照score属性排序,再定义一个类是不是有点大题小作呀,有没有更好的办法呢?当然有. .net为我们准备了比较对象大小的委托Comparison<T>我们可以使用拉姆达表达式或者匿名委托直接排序,如下代码实现:

Console.WriteLine("----------按分数排序输出----------");
Array.Sort(students,(s1,s2) => s1.score.CompareTo(s2.score));
Array.ForEach<Student>(students,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 1;
}
}
static void Main(string[] args)
{
Student[] students = new Student[]{
new Student(){Age = 10,s.score)));
Console.WriteLine("----------按分数排序输出------------");
Array.Sort(students,s.score)));
Console.WriteLine("----------按分数排序输出----------");
Array.Sort(students,s.score)));
Console.Read();
}
public class StudentscoreComparer : IComparer<Student>
{
public int Compare(Student x,Student y)
{
return x.score.CompareTo(y.score);
}
}
}
}

总结:
在C#中有三个关于比较对象大小的接口,分别是IComparable、IComparable<T>和IComparer<T>。 IComparable和IComparable<T>是类本身实现的在实例之间比较大小的行为定义。IComparer<T>是定义在被比较类之外的专门比较两个T类型对象大小的行为,另外还有一个用于比较的委托定义Comparison<T>可以让我们用拉姆达表达式或者匿名委托或方法更方便的排序。

猜你在找的C#相关文章