举例讲解C#编程中委托的实例化使用

合并委托
本示例演示如何创建多播委托。 委托对象的一个有用属性是:可以使用 + 运算符将多个对象分配给一个委托实例。多播委托包含已分配委托的列表。在调用多播委托时,它会按顺序调用列表中的委托。只能合并相同类型的委托。
- 运算符可用于从多播委托中移除组件委托。

using System;

// Define a custom delegate that has a string parameter and returns void.
delegate void CustomDel(string s);

class TestClass
{
  // Define two methods that have the same signature as CustomDel.
  static void Hello(string s)
  {
    System.Console.WriteLine(" Hello, {0}!", s);
  }

  static void Goodbye(string s)
  {
    System.Console.WriteLine(" Goodbye, {0}!", s);
  }

  static void Main()
  {
    // Declare instances of the custom delegate.
    CustomDel hiDel, byeDel, multiDel, multiMinusHiDel;

    // In this example, you can omit the custom delegate if you
    // want to and use Action<string> instead.
    //Action<string> hiDel, byeDel, multiDel, multiMinusHiDel;

    // Create the delegate object hiDel that references the
    // method Hello.
    hiDel = Hello;

    // Create the delegate object byeDel that references the
    // method Goodbye.
    byeDel = Goodbye;

    // The two delegates, hiDel and byeDel, are combined to
    // form multiDel.
    multiDel = hiDel + byeDel;

    // Remove hiDel from the multicast delegate, leaving byeDel,
    // which calls only the method Goodbye.
    multiMinusHiDel = multiDel - hiDel;

    Console.WriteLine("Invoking delegate hiDel:");
    hiDel("A");
    Console.WriteLine("Invoking delegate byeDel:");
    byeDel("B");
    Console.WriteLine("Invoking delegate multiDel:");
    multiDel("C");
    Console.WriteLine("Invoking delegate multiMinusHiDel:");
    multiMinusHiDel("D");
  }
}

输出:

Invoking delegate hiDel:
 Hello, A!
Invoking delegate byeDel:
 Goodbye, B!
Invoking delegate multiDel:
 Hello, C!
 Goodbye, C!
Invoking delegate multiMinusHiDel:
 Goodbye, D!

声明、实例化和使用委托
在 C# 1.0 及更高版本中,可以按以下示例所示声明委托。

 // Declare a delegate.
delegate void Del(string str);

// Declare a method with the same signature as the delegate.
static void Notify(string name)
{
  Console.WriteLine("Notification received for: {0}", name);
}

 // Create an instance of the delegate.
Del del1 = new Del(Notify);

C# 2.0 提供了更简单的方法来编写上面的声明,如以下示例所示。

// C# 2.0 provides a simpler way to declare an instance of Del.
Del del2 = Notify;

在 C# 2.0 及更高版本中,还可以使用匿名方法来声明和初始化委托,如以下示例所示。

// Instantiate Del by using an anonymous method.
Del del3 = delegate(string name)
  { Console.WriteLine("Notification received for: {0}", name); };

在 C# 3.0 及更高版本中,还可以使用 Lambda 表达式来声明和实例化委托,如以下示例所示。

// Instantiate Del by using a lambda expression.
Del del4 = name => { Console.WriteLine("Notification received for: {0}", name); };

下面的示例阐释声明、实例化和使用委托。 BookDB 类封装一个书店数据库,它维护一个书籍数据库。它公开 ProcessPaperbackBooks 方法,该方法在数据库中查找所有平装书,并对每本平装书调用一个委托。使用的 delegate 类型名为 ProcessBookDelegate。 Test 类使用该类打印平装书的书名和平均价格。
委托的使用促进了书店数据库和客户代码之间功能的良好分隔。客户代码不知道书籍的存储方式和书店代码查找平装书的方式。书店代码也不知道找到平装书后将对平装书执行什么处理。

// 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 TestBookDB
  {
    // Print the title of the book.
    static void PrintTitle(Book b)
    {
      System.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:
      System.Console.WriteLine("Paperback Book Titles:");

      // Create a new delegate object associated with the static
      // method Test.PrintTitle:
      bookDB.ProcessPaperbackBooks(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(totaller.AddBookToTotal);

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

可靠编程
声明委托。
下面的语句声明一个新的委托类型。

public delegate void ProcessBookDelegate(Book book);

每个委托类型都描述参数的数目和类型,以及它可以封装的方法的返回值类型。每当需要一组新的参数类型或新的返回值类型时,都必须声明一个新的委托类型。
实例化委托。
声明了委托类型后,必须创建委托对象并使之与特定方法关联。在上一个示例中,您通过按下面示例中的方式将 PrintTitle 方法传递到 ProcessPaperbackBooks 方法来实现这一点:

bookDB.ProcessPaperbackBooks(PrintTitle);

这将创建与静态方法 Test.PrintTitle 关联的新委托对象。类似地,对象 totaller 的非静态方法 AddBookToTotal 是按下面示例中的方式传递的:

bookDB.ProcessPaperbackBooks(totaller.AddBookToTotal);

在两个示例中,都向 ProcessPaperbackBooks 方法传递了一个新的委托对象。
委托创建后,它的关联方法就不能更改;委托对象是不可变的。
调用委托。
创建委托对象后,通常将委托对象传递给将调用该委托的其他代码。通过委托对象的名称(后面跟着要传递给委托的参数,括在括号内)调用委托对象。下面是委托调用的示例:

processBook(b);

与本例一样,可以通过使用 BeginInvoke 和 EndInvoke 方法同步或异步调用委托。

(0)

相关推荐

  • C#使用委托(delegate)实现在两个form之间传递数据的方法

    本文实例讲述了C#使用委托(delegate)实现在两个form之间传递数据的方法.分享给大家供大家参考.具体分析如下: 关于Delegate[代理.委托]是C#中一个非常重要的概念,向前可以推演到C++的指针,向后可以延续到匿名方法.lambda表达式. 现在我就从一个最简单最实用的一个小例子出发分析一下Delegate的使用. 现在有两个窗体Form1和Form2. 两个按钮Button1(Form)和Button2(Form2). Form1的代码: private void button

  • C#中的委托介绍

    什么是委托? 之前写了事件的介绍:http://www.jb51.net/article/59461.htm 这里也把委托相关知识也总结一下. 委托是c#中类型安全的,可以订阅一个或多个具有相同签名方法的函数指针 声明委托的方式:delegate 返回值类型 委托类型名(参数) 比如: 复制代码 代码如下: delegate void StringProcess(string s); 注意:这里的除了前面的delegate,剩下部分和声明一个函数一样,但是StringProcess不是函数名,而

  • C#用匿名方法定义委托的实现方法

    本文实例讲述了C#用匿名方法定义委托的实现方法.分享给大家供大家参考.具体实现方法如下: //用匿名方法定义委托 class Program { delegate string MyDelagate(string val); static void Main(string[] args) { string str1 = " 匿名方法外部 "; //中括号部分定义来了一个方法,没有名称,编译器会定指定一个名称 MyDelagate my = delegate(string param)

  • C#通过委托调用Button单击事件的方法

    这里介绍通过委托取消Button事件switch-case的方法.需要注意的是,事先要按顺序在各个Button的Tag属性中设置0.1.2.3--等序号,其作用请详看代码. /*定义委托*/ public delegate 类型或viod MethodDelegate(参数1, 参数2); private void buttonC_Click(object sender, EventArgs e) { Button button = (Button)sender; /*向委托添加方法*/ Met

  • C#中委托用法

    本文实例讲述了C#中委托用法.分享给大家供大家参考.具体分析如下: 对于用户要查找的条件的千变万化,我们在写条件去查找时,是不可能一下写死的,那样,如果你写好了一个类让别人用,别人需要的不是那种查询,得去找你改条件. 那么我们能否让使用这个类的人自己定义一个规则(条件),直接传条件给你,你帮我查询出结果来,C#就可以用委托来解决,相应的java可以用接口来实现 using System; using System.Collections.Generic; using System.Text; u

  • C#中委托的进一步理解

    前面一篇文章介绍了委托的基本知识,接下来就进一步研究一下委托. 委托类型 其实,刚开始觉得委托类型是一个比较难理解的概念,怎么也不觉得下面的"AssembleIphoneHandler"是一个类型. 复制代码 代码如下: public delegate void AssembleIphoneHandler(); 按照正常的情况,如果我们要创建一个委托类型应该是: 复制代码 代码如下: public class AssembleIphoneHandler : System.Multica

  • C#异步委托调用实例分析

    本文实例讲述了C#异步委托调用实现方法.分享给大家供大家参考.具体如下: static void Main(string[] args) { //委托异步 Action<string> showMessage = ShowMessage; IAsyncResult result = showMessage.BeginInvoke("测试异步委托",null, null); //那在异步线程未完成工作以前主线程将处于阻塞状态 //等到异步线程结束,主线程才能继续工作 show

  • C#中的delegate委托类型基本学习教程

    委托 delegate 是表示对具有特定参数列表和返回类型的方法的引用的类型.在实例化委托时,你可以将其实例与任何具有兼容签名和返回类型的方法相关联.你可以通过委托实例调用方法. 委托用于将方法作为参数传递给其他方法.事件处理程序就是通过委托调用的方法.你可以创建一个自定义方法,当发生特定事件时,某个类(如 Windows 控件)就可以调用你的方法.下面的示例演示了一个委托声明: public delegate int PerformCalculation(int x, int y); 可将任何

  • C#中的委托、事件学习笔记

    1.委托delegate 委托delegate也是一种类型,在任何可以声明类的地方都可以声明委托,它将方法当做另一个方法的参数进行传递,这样就可以传递不同的方法,完成不同的功能,使程序具有很好的可扩展性. 举例: 假设这里有一台电脑,有人会用它写程序,有人会用它打游戏,有人会用它看电影,有人会用它边听音乐边玩游戏,有人会用它边听音乐边看文档,边上QQ. 这台电脑可以抽象成一个类Computer,里面有个方法DoWork,所有的人都要通过这个方法来做自己的事情. 不用委托的时候我们可以实现一些固定

  • C#中委托的基本概念介绍

    最近在看深入理解C#,发现这是一本很不错的书,将很多C#的知识点联系了起来,更像是一本C#历史书,从C# 1一步步介绍到C# 4. 所以准备一边看,一边整理读书笔记.那么就先从委托开始. 委托是C#中一个非常重要的概念,从C# 1开始就有了委托这个核心概念,在C# 2和C# 3中委托又有了很多改进. 通过委托,我们可以将一个方法当作对象封装起来,并且在运行时,我们可以通过这个对象来完成方法的调用. 委托的使用 首先,来个简单的例子,苹果只负责设计iphone,而把组装iphone的工作委托给富士

随机推荐