快精灵印艺坊 您身边的文印专家
广州名片 深圳名片 会员卡 贵宾卡 印刷 设计教程
产品展示 在线订购 会员中心 产品模板 设计指南 在线编辑
 首页 名片设计   CorelDRAW   Illustrator   AuotoCAD   Painter   其他软件   Photoshop   Fireworks   Flash  

 » 彩色名片
 » PVC卡
 » 彩色磁性卡
 » 彩页/画册
 » 个性印务
 » 彩色不干胶
 » 明信片
   » 明信片
   » 彩色书签
   » 门挂
 » 其他产品与服务
   » 创业锦囊
   » 办公用品
     » 信封、信纸
     » 便签纸、斜面纸砖
     » 无碳复印纸
   » 海报
   » 大篇幅印刷
     » KT板
     » 海报
     » 横幅

Collection and Object Ordering

.Net SDK provides a number of collection classes in the System.Collections namespace.
We use these collection classes to store objects inside them and perform some operation
on them later on as per application logic. Many times we need to re-order objects
stored inside these collection. Most collection classes provide a method called Sort() to
re-order their elements. The objective of this article is to use Sort() method
to order elements stored in a collection class in a generic fashion.

Let me explain you with an example :

Suppose we have a ArrayList object and which contains a number of country objects inside it and
now we want to order those objects in ascending/descending order based on country name.

Follow these steps to create a generic sort object to accomplish the sorting in generic fashion:

Step 1: Create a file Country.cs as

using System;

namespace GenericSort
{
public class Country
{
private string countryName ; //Country Name
private string capitalName ; //Capital Name

public Country(string countryName, string capitalName)
{
this.countryName = countryName;
this.capitalName = capitalName;
}

public string GetCountry()
{
return countryName;
}

public string GetCapital()
{
return capitalName;
}

}
}

Country object has got two members and two methods. First method GetCountry returns the name of the country and the second method GetCapital returns the name of the capital of that country. Apart from those two methods there is a constructor, which accepts country name and capital name as parameters and sets the countryName and capitalName members with that.


Step 2: Create a file GenericSort.cs as


using System;
using System.Collections;
using System.Reflection;

namespace GenericSort
{
public class GenericSort : IComparer
{
String sortMethodName;
String sortOrder;

public GenericSort(String sortMethodName, String sortOrder)
{
this.sortMethodName = sortMethodName;
this.sortOrder = sortOrder;
}

public int Compare(object x, object y)
{

IComparable ic1 = (IComparable)x.GetType().GetMethod(sortMethodName).Invoke(x,null);
IComparable ic2 = (IComparable)y.GetType().GetMethod(sortMethodName).Invoke(y,null);

if( sortOrder != null && sortOrder.ToUpper().Equals("ASC") )
return ic1.CompareTo(ic2);
else
return ic2.CompareTo(ic1);
}

[STAThread]
static void Main(string[] args)
{
Country country1 = new Country("USA", "Washington D.C.");
Country country2 = new Country("Canada", "Ottawa");
Country country3 = new Country("France", "Paris");
Country country4 = new Country("Australia", "Canberra");
Country country5 = new Country("Mexico", "Mexico City");

ArrayList al = new ArrayList();
al.Add(country1);
al.Add(country2);
al.Add(country3);
al.Add(country4);
al.Add(country5);

Console.WriteLine("Before Sorting");

foreach(Country cnt in al)
{
Console.WriteLine( cnt.GetCountry());
}

Console.WriteLine("/nAfter Sorting in ascending order");
al.Sort(new GenericSort("GetCountry", "ASC"));
foreach(Country cnt in al)
{
Console.WriteLine( cnt.GetCountry());
}

}
}
}

The above object implements IComparer interface. We would be passing this object as a parameter to Sort() method of ArrayList object (which expects a object of type IComparer interface). The constructor of this object takes two parameter namely sortMethodName of type String and sortOrder of type String. These two parameter are used in reordering objects stored inside the ArrayList. The first parameter is used for comparing the objects stored inside the ArrayList and second parameter helps in ordering the object in either ascending or descending order.

As you see in the main method, there are five country objects with different country name and their capitals and there is a ArrayList object to store those country objects. The first foreach loop just prints the country name in the order the objects were added to the ArrayList. Just before the second foreach loop, we are re-ordering the objects
as per country name and in ascending order, to do this we are passing GenericSort object as parameter to Sort method.

Step 3: Now if you compile and run this program you would see following output :

Before Sorting
USA
Canada
France
Australia
Mexico

After Sorting in ascending order
Australia
Canada
France
Mexico
USA

So, when next time you need to order elements inside a collection object take this sample and modify it accordingly to suit your need. Most of the time the GenericSort object should meet your requirement without any modification.  
 



返回类别: 教程
上一教程: 用Asp.net实现基于XML的留言簿之三
下一教程: C#里操作时间的例子!

您可以阅读与"Collection and Object Ordering"相关的教程:
· Using Delegates and Events 1 (来自一本49美元/817页2002年的书《C#.net web developer\'s guide》)
· Borland .NET FAQ
· COM, COM+ and .NET 的区别(转)
· Using Delegates and Events 2 (来自一本49美元/817页2002年的书《C#.net web developer\'s guide》)
· 漫谈.Net中的自动垃圾收集(Garbage Collection)机制(转)
    微笑服务 优质保证 索取样品