电话:0731-83595998
导航

C# 程序员参考--委托教学文章

来源: 2017-08-20 20:21

 本教程演示委托类型。它说明如何将委托映射到静态方法和实例方法,以及如何组合委托(多路广播)。

教程

C# 中的委托类似于 C 或 C++ 中的函数指针。使用委托使程序员可以将方法引用封装在委托对象内。然后可以将该委托对象传递给可调用所引用方法的代码,而不必在编译时知道将调用哪个方法。与 C 或 C++ 中的函数指针不同,委托是面向对象、类型安全的,并且是安全的。

委托声明定义一种类型,它用一组特定的参数以及返回类型封装方法。对于静态方法,委托对象封装要调用的方法。对于实例方法,委托对象同时封装一个实例和该实例上的一个方法。如果您有一个委托对象和一组适当的参数,则可以用这些参数调用该委托。

委托的一个有趣且有用的属性是,它不知道或不关心自己引用的对象的类。任何对象都可以;只是方法的参数类型和返回类型必须与委托的参数类型和返回类型相匹配。这使得委托完全适合“匿名”调用。

注意   委托是在调用方的安全权限下运行而不是声明方的权限下运行。

此教程包括两个示例:

此外,还讨论以下主题:

示例 1

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

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

// bookstore.cs



using System;







// A set of classes for handling a bookstore:



namespace Bookstore 



{



   using System.Collections;







   // Describes a book in the book list:



   public struct Book



   {



      public string Title;        // Title of the book.



      public string Author;       // Author of the book.



      public decimal Price;       // Price of the book.



      public bool Paperback;      // Is it paperback?







      public Book(string title, string author, decimal price, bool paperBack)



      {



         Title = title;



         Author = author;



         Price = price;



         Paperback = paperBack;



      }



   }







   // Declare a delegate type for processing a book:



   public delegate void ProcessBookDelegate(Book book);







   // Maintains a book database.



   public class BookDB



   {



      // List of all books in the database:



      ArrayList list = new ArrayList();   







      // Add a book to the database:



      public void AddBook(string title, string author, decimal price, bool paperBack)



      {



         list.Add(new Book(title, author, price, paperBack));



      }







      // Call a passed-in delegate on each paperback book to process it: 



      public void ProcessPaperbackBooks(ProcessBookDelegate processBook)



      {



         foreach (Book b in list) 



         {



            if (b.Paperback)



            // Calling the delegate:



               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.WriteLin

 

[1] [2] [3] 下一页  

 

e("Paperback Book Titles:"); // Create a new delegate object associated with the static // method Test.PrintTitle: 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.95m, true); bookDB.AddBook("The Unicode Standard 2.0", "The Unicode Consortium", 39.95m, true); bookDB.AddBook("The MS-DOS Encyclopedia", "Ray Duncan", 129.95m, false); bookDB.AddBook("Dogbert's Clues for the Clueless", "Scott Adams", 12.00m, true); } } }

输出

Paperback Book Titles:



   The C Programming Language



   The Unicode Standard 2.0



   Dogbert's Clues for the Clueless



Average Paperback Book Price: $23.97

代码讨论

示例 2

本示例演示组合委托。委托对象的一个有用属性是,它们可以“+”运算符来组合。组合的委托可调用组成它的那两个委托。只有相同类型的委托才可以组合。

-”运算符可用来从组合的委托移除组件委托。

// compose.cs



using System;







delegate void MyDelegate(string s);







class MyClass



{



    public static void Hello(string s)



    {



        Console.WriteLine("  Hello, {0}!", s);



    }







    public static void Goodbye(string s)



    {



        Console.WriteLine("  Goodbye, {0}!", s);



    }







    public static void Main()



    {



        MyDelegate a, b, c, d;







        // Create the delegate object a that references 



        // the method Hello:



        a = new MyDelegate(Hello);



        // Create the delegate object b that references 



        // the method Goodbye:



        b = new MyDelegate(Goodbye);



        // The two delegates, a and b, a

 

上一页  [1] [2] [3] 下一页  

 

re composed to form c: c = a + b; // Remove a from the composed delegate, leaving d, // which calls only the method Goodbye: d = c - a; Console.WriteLine("Invoking delegate a:"); a("A"); Console.WriteLine("Invoking delegate b:"); b("B"); Console.WriteLine("Invoking delegate c:"); c("C"); Console.WriteLine("Invoking delegate d:"); d("D"); } }

输出

Invoking delegate a:



  Hello, A!



Invoking delegate b:



  Goodbye, B!



Invoking delegate c:



  Hello, C!



  Goodbye, C!



Invoking delegate d:



  Goodbye, D!

委托和事件

委托非常适合于用作事件(从一个组件就该组件中的更改通知“侦听器”)。有关将委托用于事件的更多信息,请参见事件教程。

委托与接口

委托和接口的类似之处是,它们都允许分隔规范和实现。多个独立的作者可以生成与一个接口规范兼容的多个实现。类似地,委托指定方法的签名,多个作者可以编写与委托规范兼容的多个方法。何时应使用接口,而何时应使用委托呢?

委托在以下情况下很有用:

接口在以下情况下很有用:


 

 

 

上一页  [1] [2] [3] 

编辑推荐:

下载Word文档

温馨提示:因考试政策、内容不断变化与调整,长理培训网站提供的以上信息仅供参考,如有异议,请考生以权威部门公布的内容为准! (责任编辑:长理培训)

网络课程 新人注册送三重礼

已有 22658 名学员学习以下课程通过考试

网友评论(共0条评论)

请自觉遵守互联网相关政策法规,评论内容只代表网友观点!

最新评论

点击加载更多评论>>

精品课程

更多
10781人学习

免费试听更多

相关推荐
图书更多+
  • 电网书籍
  • 财会书籍
  • 其它工学书籍
拼团课程更多+
  • 电气拼团课程
  • 财会拼团课程
  • 其它工学拼团
热门排行

长理培训客户端 资讯,试题,视频一手掌握

去 App Store 免费下载 iOS 客户端