狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

C# 委托

admin
2017年3月8日 0:16 本文熱度 6443

C#中的委托類似于C++中的函數(shù)指針.可以根據(jù)定義的委托實現(xiàn)不同的函數(shù).定義委托的方法如下





[csharp] view plain copy
 print?


  1. [修飾符]delegate 返回類型 委托名([參數(shù)列表])  

其中修飾符合參數(shù)列表是可選項.使用的時候先聲明一個委托.例如:定義一個返回類型為void的,需要一個變量的委托





[csharp] view plain copy
 print?


  1. delegate void MyDelegate(object o1)  

然后在定義需要使用該委托的方法,這個方法必須和聲明的委托具有相同的簽名,即返回類型相同,而且需要傳遞一個參數(shù).






  1. private void Myfunction1(object o1)  

  2. {  

  3.    string str = (string)o1;  

  4.    /*do something */  

  5. }  

  6.   

  7. private void Myfunction2(object o2)  

  8. {  

  9.     int num = (int)o2;  

  10.     /* do something */  

  11. }  

使用方法:


MyDelegate mydelegate1 = new MyDelegate (Myfunction1);


MyDelegate mydelegate2 = new MyDelegate (Myfunction2);


mydelegate1 ("This is a demon!");


mydelegate2 (25);


委托在使用的時候必須要實例化,這樣就實現(xiàn)了一個委托實例化不同的函數(shù)。


附上兩個實例:


第一個:一個雇員類,實現(xiàn)按年齡和薪金排序





[csharp] view plain copy
 print?


  1. using System;  

  2. using System.Collections.Generic;  

  3. using System.Linq;  

  4. using System.Text;  

  5. using System.Threading.Tasks;  

  6.   

  7. namespace 委托  

  8. {  

  9.       

  10.     /// <summary>  

  11.     /// 定義一個委托用于比較  

  12.     /// </summary>  

  13.     /// <param name="o1"></param>  

  14.     /// <param name="o2"></param>  

  15.     /// <returns></returns>  

  16.     delegate bool Compare(object o1, object o2);  

  17.     class Employee  

  18.     {  

  19.         private int mAge;  

  20.         private int mSalary;  

  21.         private string mName;  

  22.   

  23.         public Employee(string aName, int aAge, int aSalary)  

  24.         {  

  25.             this.mAge = aAge;  

  26.             this.mSalary = aSalary;  

  27.             this.mName = aName;  

  28.         }  

  29.         public void Print()  

  30.         {  

  31.             Console.WriteLine("Name is:{0}, Age is:{1}, Salary is:{2}", mName, mAge, mSalary);  

  32.         }  

  33.         static public bool CompareAge(object o1, object o2)  

  34.         {  

  35.             Employee e1 = (Employee)o1;  

  36.             Employee e2 = (Employee)o2;  

  37.             return (e1.mAge > e2.mAge) ? true : false;  

  38.         }  

  39.         static public bool CompareSalary(object o1, object o2)  

  40.         {  

  41.             Employee e1 = (Employee)o1;  

  42.             Employee e2 = (Employee)o2;  

  43.             return (e1.mSalary > e2.mSalary) ? true : false;  

  44.         }  

  45.     }  

  46.       

  47.     class Test  

  48.     {  

  49.         static public void Sort(object[] aSortArry, Compare CompareMethod)  

  50.         {  

  51.             for (int i=0; i<aSortArry.Length; i++)  

  52.             {  

  53.                 for (int j = i + 1; j < aSortArry.Length; j++)  

  54.                 {  

  55.                     if (CompareMethod(aSortArry[i], aSortArry[j]))  

  56.                     {  

  57.                         object temp = aSortArry[i];  

  58.                         aSortArry[i] = aSortArry[j];  

  59.                         aSortArry[j] = temp;  

  60.                     }  

  61.                 }  

  62.             }  

  63.         }  

  64.         static void Main(string[] args)  

  65.         {  

  66.             Employee[] employee = {  

  67.               new Employee("Wang",12,800), new Employee("Liu", 21, 900), new Employee("Li", 34, 300),  

  68.               new Employee("Sun", 9, 1200), new Employee("Xu", 23, 2000),new Employee("Wu", 21, 400)};  

  69.             Compare CompareAge = new Compare(Employee.CompareAge);  

  70.             Compare CompareSalary = new Compare(Employee.CompareSalary);  

  71.             Console.WriteLine("Sorted by age:");  

  72.             Sort(employee, CompareAge);  

  73.             for (int i = 0; i < employee.Length; i++)  

  74.                 employee[i].Print();  

  75.             Console.WriteLine("Sorted by salary:");  

  76.             Sort(employee, CompareSalary);  

  77.             for (int i = 0; i < employee.Length; i++)  

  78.                 employee[i].Print();         

  79.             Console.ReadKey();  

  80.         }  

  81.     }  

  82.        

  83.       

  84. }  

第二個:





[csharp] view plain copy
 print?


  1. using System;  

  2. using System.Collections.Generic;  

  3. using System.Linq;  

  4. using System.Text;  

  5. using System.Threading.Tasks;  

  6.   

  7. namespace 委托  

  8. {  

  9.       

  10.     delegate void None();  

  11.     delegate void Single(object o1);  

  12.     delegate void Complex(object o1, object o2);  

  13.     class Test  

  14.     {  

  15.         static private void DeleNone()  

  16.         {  

  17.             Console.WriteLine("This is the none delegate!");  

  18.         }  

  19.         static private void DeleSingle(object o1)  

  20.         {  

  21.             string str = (string)o1;  

  22.             Console.WriteLine(str);  

  23.         }  

  24.         static private void DeleComplex(object o1, object o2)  

  25.         {  

  26.             string str1 = (string)o1;  

  27.             string str2 = (string)o2;  

  28.             Console.WriteLine(str1 + str2);  

  29.         }  

  30.         static void Main(string[] args)  

  31.         {  

  32.             None mNone = new None(DeleNone);  

  33.             Single mSingle = new Single(DeleSingle);  

  34.             Complex mComplex = new Complex(DeleComplex);  

  35.             mSingle("This is the Single delegate!");  

  36.             mComplex("I am o1 ""I am o2");  

  37.             Console.ReadKey();  

  38.         }  

  39.     }  

  40. }  


該文章在 2017/3/8 0:16:58 編輯過
關(guān)鍵字查詢
相關(guān)文章
正在查詢...
點(diǎn)晴ERP是一款針對中小制造業(yè)的專業(yè)生產(chǎn)管理軟件系統(tǒng),系統(tǒng)成熟度和易用性得到了國內(nèi)大量中小企業(yè)的青睞。
點(diǎn)晴PMS碼頭管理系統(tǒng)主要針對港口碼頭集裝箱與散貨日常運(yùn)作、調(diào)度、堆場、車隊、財務(wù)費(fèi)用、相關(guān)報表等業(yè)務(wù)管理,結(jié)合碼頭的業(yè)務(wù)特點(diǎn),圍繞調(diào)度、堆場作業(yè)而開發(fā)的。集技術(shù)的先進(jìn)性、管理的有效性于一體,是物流碼頭及其他港口類企業(yè)的高效ERP管理信息系統(tǒng)。
點(diǎn)晴WMS倉儲管理系統(tǒng)提供了貨物產(chǎn)品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質(zhì)期管理,貨位管理,庫位管理,生產(chǎn)管理,WMS管理系統(tǒng),標(biāo)簽打印,條形碼,二維碼管理,批號管理軟件。
點(diǎn)晴免費(fèi)OA是一款軟件和通用服務(wù)都免費(fèi),不限功能、不限時間、不限用戶的免費(fèi)OA協(xié)同辦公管理系統(tǒng)。
Copyright 2010-2025 ClickSun All Rights Reserved