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

溫馨提示×

溫馨提示×

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

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

委托二--------使用委托實現冒泡排序

發布時間:2020-06-22 05:51:29 來源:網絡 閱讀:673 作者:1473348968 欄目:編程語言

-------------------------------------------------------------Proson.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
    public class Proson
    {
        public string Name { get; private set; }
        public decimal Money { get; private set; }
        public Proson(string name, decimal money)
        {
            this.Name = name;
            this.Money = money;
        }
        public override string ToString()
        {
            return string.Format("姓名:{0};月薪:{1}", Name, Money);
        }
        //此方法用于傳為委托
        public static bool IsMax(Proson p1, Proson p2)
        {
            return p1.Money < p2.Money;
        }
    }
}

-------------------------------------------------------------MySort.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
    public class MySort
    {
        //IList<T> array  :用于接收任何數組,集合
        //Func<T, T, bool> func :委托 ,傳遞兩個參數,一個bool返回值
        public static void Sort<T>(IList<T> array, Func<T, T, bool> func)
        {
            bool yesno = true;
            do {
                yesno = false;
                for (int i = 0; i < array.Count - 1; i++)
                {
                    if (func(array[i], array[i + 1]))//用到了委托【bool IsMax(Proson p1, Proson p2)】
                    {
                        T temp = array[i];
                        array[i] = array[i + 1];
                        array[i + 1] = temp;
                        yesno = true;
                    }
                }
            } while (yesno);
        }
    }
}

-------------------------------------------------------------主程序

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            Proson[] p = { new Proson("張翼德", 100000m), 
                             new Proson("趙子龍", 50000m),
                             new Proson("關云長", 150000m), 
                             new Proson("諸葛亮", 200000m) };
            //傳遞一個數組,和一個方法
            MySort.Sort(p, Proson.IsMax);
            foreach (var item in p)
            {
                Console.WriteLine(item.ToString());
                Console.ReadLine();
            }
 
        }
    }
}

向AI問一下細節

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

AI

曲水县| 义马市| 鄄城县| 田林县| 永清县| 长寿区| 清水县| 晋江市| 襄城县| 侯马市| 涞源县| 正宁县| 千阳县| 闽清县| 贡觉县| 靖江市| 崇州市| 黔西县| 青田县| 吐鲁番市| 英山县| 兴城市| 高台县| 长丰县| 安陆市| 亚东县| 边坝县| 凤山市| 辽宁省| 东乌珠穆沁旗| 益阳市| 阳江市| 全州县| 封丘县| 宁陵县| 嵊泗县| 开化县| 宽城| 弥渡县| 新余市| 安泽县|