对象数组根据某属性列的灵活排序
在工作中经常会遇到对象数组根据某个属性进行排序的问题。这里介绍一个方法。
以汽车为例:
不用担心我们只要使用一个最简单的Adapter模式就能解决这个问题
下面我们来创建这个适配器:
调用
(转载请通知并注明出处。)
以汽车为例:
public class Car: {
private int weight;
public int Weight
{
get { return weight; }
set { weight = value; }
}
private string type;
public string Type
{
get { return type; }
set { type = value; }
}
}
private int weight;
public int Weight
{
get { return weight; }
set { weight = value; }
}
private string type;
public string Type
{
get { return type; }
set { type = value; }
}
}
Car[] cars;现在需要排序,首先我们想根据Weight进行排序,大家自然会想到冒泡算法。不过这个肯定不是最好的,这里提供一个简便的方法。
我们将类Car实现接口IComparable使其能够使用Array.Sort()。
代码如下:
public class Car:IComparable<Car>
{
private int weight;
public int Weight
{
get { return weight; }
set { weight = value; }
}
private string type;
public string Type
{
get { return type; }
set { type = value; }
}
IComparable 成员
}
实现该方法以后我们就可以直接使用如下代码来对cars进行排序了。{
private int weight;
public int Weight
{
get { return weight; }
set { weight = value; }
}
private string type;
public string Type
{
get { return type; }
set { type = value; }
}
IComparable
}
Car[] arr = new Car[] {car1,car2,car3 };
Array.Sort<Car>(arr);
但是随着项目的发展的发展我们会迎来新的问题,我们现在又需要根据Type排序了,怎么办呢?Array.Sort<Car>(arr);
不用担心我们只要使用一个最简单的Adapter模式就能解决这个问题
下面我们来创建这个适配器:
public class ComparaCarAdapter : IComparer<Car>
{
IComparer 成员
}
然后如此调用:{
IComparer
}
Array.Sort<Car>(arr,new ComparaCarAdapter());
但是这样如果属性很多,会产生很多的类,怎么办呢。那么利用反射吧。将ComparaCarAdapter改造为: public class ComparaCarAdapter : IComparer<Car>
{
string _progName = "";
public ComparaCarAdapter(string progName)
{
_progName = progName;
}
IComparer 成员
}
{
string _progName = "";
public ComparaCarAdapter(string progName)
{
_progName = progName;
}
IComparer
}
调用
Array.Sort<Car>(arr, new ComparaCarAdapter("Weight"));
OK搞定,应该足够灵活了吧。 (转载请通知并注明出处。)