[转载] 委托代理Delegate

C# 中的委托类似于 C 或 C++ 中的函数指针。使用委托使程序员可以将方法引用封装在委托对象内。然后可以将该委托对象传递给
可调用所引用方法的代码,而不必在编译时知道将调用哪个方法。(参见下例)

委托是一种用来引用静态方法或者对象实例方法的数据类型,与C 或 C++ 中的函数指针不同,后者只能引用静态方法。

委托的使用

public delegate int MyDelegate(int i);
//代理的返回类型及参数必须与所指向的方法(function)的返回类型及参数相同
public Class C
{
      
public  int function(int i)
   
{
       方法代码;
    }

}


MyDelegate d 
= new MyDelegate(C.function);
int intvalue = 1;
d(intvalue);


MSDN实例:
BookDB 类封装一个书店数据库,它维护一个书籍数据库。它公开 ProcessPaperbackBooks 方法,该方法在数据库中查找所有平装书,
并为每本书调用一个委托。所使用的 delegate 类型称为 ProcessBookDelegateTest 类使用该类输出平装书的书名和平均价格。

委托的使用促进了书店数据库和客户代码之间功能的良好分隔。客户代码不知道书籍的存储方式和书店代码查找平装书的方式。
书店代码也不知道找到平装书后将对平装书进行什么处理。

// bookstore.cs
using System;

namespace Bookstore 
{
   
using System.Collections;

    
public struct Book
   
{
      
public string Title;              public string Author;       
      
public decimal Price;             public bool Paperback;     
      
public Book(string title, string author, decimal price, bool paperBack)
      
{
         Title 
= title;
         Author 
= author;
         Price 
= price;
         Paperback 
= paperBack;
      }

   }


      
public delegate void ProcessBookDelegate(Book book);

   
// Maintains a book database.
   public class BookDB
   
{
            ArrayList list 
= new ArrayList();   

            
public void AddBook(string title, string author, decimal price, bool paperBack)
      
{
         list.Add(
new Book(title, author, price, paperBack));
      }


      
//委托发挥作用,委托作为参数传入方法ProcessPaperbackBooks内,该方法并不知道委托指        向的是什么方法
      public void ProcessPaperbackBooks(ProcessBookDelegate processBook)
      
{
         
foreach (Book b in list) 
         
{
            
if (b.Paperback)
            
// 调用委托所指向的方法               processBook(b);
         }

      }

   }

}


// Using the Bookstore classes:
namespace BookTestClient
{
   
using Bookstore;

   
// Class to total and average prices of books:
   class PriceTotaller
   
{
      
int countBooks = 0;
      
decimal priceBooks = 0.0m;

      
internal void AddBookToTotal(Book book)
      
{
         countBooks 
+= 1;
         priceBooks 
+= book.Price;
      }


      
internal decimal AveragePrice()
      
{
         
return priceBooks / countBooks;
      }

   }


   
// Class to test the book database:
   class Test
   
{
      
// Print the title of the book.
      static void PrintTitle(Book b)
      
{
         Console.WriteLine(
"   {0}", b.Title);
      }


      
// Execution starts here.
      static void Main()
      
{
         BookDB bookDB 
= new BookDB();

         
// Initialize the database with some books:
         AddBooks(bookDB);      

         
// Print all the titles of paperbacks:
         Console.WriteLine("Paperback Book Titles:");         // Create a new delegate object associated with the static 
         bookDB.ProcessPaperbackBooks(new ProcessBookDelegate(PrintTitle));

         
// Get the average price of a paperback by using
         
// a PriceTotaller object:
         PriceTotaller totaller = new PriceTotaller();
         
// Create a new delegate object associated with the nonstatic 
         
// method AddBookToTotal on the object totaller:
         bookDB.ProcessPaperbackBooks(new ProcessBookDelegate(totaller.AddBookToTotal));
         Console.WriteLine(
"Average Paperback Book Price: ${0:#.##}",
            totaller.AveragePrice());
      }


      
// Initialize the book database with some test books:
      static void AddBooks(BookDB bookDB)
      
{
         bookDB.AddBook(
"The C Programming Language"
            
"Brian W. Kernighan and Dennis M. Ritchie"19.95mtrue);
         bookDB.AddBook(
"The Unicode Standard 2.0"
            
"The Unicode Consortium"39.95mtrue);
         bookDB.AddBook(
"The MS-DOS Encyclopedia"
            
"Ray Duncan"129.95mfalse);
         bookDB.AddBook(
"Dogbert's Clues for the Clueless"
            
"Scott Adams"12.00mtrue);
      }

   }

}

输出Paperback Book Titles:
   The C Programming Language
   The Unicode Standard 
2.0
   Dogbert
's Clues for the Clueless
Average Paperback Book Price: $23.97

 

Test.PrintTitle
totaller
AddBookToTotal
ProcessPaperbackBooks


posted @   水静痕迹  阅读(124)  评论(0编辑  收藏  举报
编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 地球OL攻略 —— 某应届生求职总结
· 提示词工程——AI应用必不可少的技术
· Open-Sora 2.0 重磅开源!
· 周边上新:园子的第一款马克杯温暖上架
点击右上角即可分享
微信分享提示