91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

c#中list sort排序

發布時間:2020-07-25 02:51:44 來源:網絡 閱讀:632 作者:studyofnet 欄目:編程語言

1、List.Sort (泛型 Comparison) 法

 

此方法的參數是Comparison類型,其實是一個包含兩個參數的委托,因此使用此方法,我們只需要定義一個委托,其兩個參數均為Student類型,在委托實現的方法比較兩個Student對象的Age屬性即可。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace GenericCompare
{
    class Program
    {
        static void Main(string[] args)
        {
            List<Student> students = new List<Student>();
            students.Add(new Student("001","kenshincui",25));
            students.Add(new Student("002", "miaoer", 23));
            students.Add(new Student("003", "shenjinjuan", 22));
            students.Add(new Student("004", "nieyanxin", 24));
            Console.WriteLine("未進行排序之前:");
            foreach (Student st in students)
            {
                Console.WriteLine(st.No+","+st.Name+","+st.Age+";");
            }
            Console.WriteLine("List.Sort (泛型 Comparison) 排序之后:");
            students.Sort(delegate(Student a, Student b) { return a.Age.CompareTo(b.Age); });
            foreach (Student st in students)
            {
                Console.WriteLine(st.No + "," + st.Name + "," + st.Age + ";");
            }
            Console.ReadKey();
        }
    }
}



2、List.Sort (泛型 IComparer)


此方法需要一個泛型IComparer接口類型,因此只要定義一個類實現此接口然后再調用此方法即可。


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace GenericCompare
{
    class StudentCompare :IComparer<Student>
    {
        public int Compare(Student a, Student b)
        {
            return a.Age.CompareTo(b.Age);
        }
    }
}

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace GenericCompare
{
    class Program
    {
        static void Main(string[] args)
        {
            List<Student> students = new List<Student>();
            students.Add(new Student("001","kenshincui",25));
            students.Add(new Student("002", "miaoer", 23));
            students.Add(new Student("003", "shenjinjuan", 22));
            students.Add(new Student("004", "nieyanxin", 24));
            Console.WriteLine("未進行排序之前:");
            foreach (Student st in students)
            {
                Console.WriteLine(st.No+","+st.Name+","+st.Age+";");
            }
            Console.WriteLine("List.Sort (泛型 IComparer) 排序之后:");
            students.Sort(new StudentCompare());
            foreach (Student st in students)
            {
                Console.WriteLine(st.No + "," + st.Name + "," + st.Age + ";");
            }
            Console.ReadKey();
        }
    }
}




參考資料:  c#中list排序    http://www.studyofnet.com/news/531.html


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

武定县| 英吉沙县| 界首市| 锦屏县| 西畴县| 册亨县| 龙州县| 宁德市| 丽江市| 铁力市| 开江县| 海晏县| 牡丹江市| 三台县| 林口县| 鲁山县| 温泉县| 响水县| 阳高县| 长泰县| 呼玛县| 积石山| 东至县| 攀枝花市| 眉山市| 旬阳县| 榆中县| 基隆市| 东安县| 贵溪市| 哈巴河县| 马尔康县| 平陆县| 渭南市| 丹阳市| 合山市| 武义县| 城口县| 扎兰屯市| 罗田县| 甘德县|