《C#高级编程》第4版 Chapter6.2.3 多播委托

来源:互联网 发布:加湿器知乎 编辑:程序博客网 时间:2024/04/25 22:40

《C#高级编程》第4版  Chapter6.2.3 多播委托

using System;

namespace MulticastDelegate
{
  delegate void DoubleOp(double value);

  class MainEntryPoint
  {
    static void Main()
    {
      DoubleOp operations = new DoubleOp(MathsOperations.MultiplyByTwo);
      operations += new DoubleOp(MathsOperations.Square);

      ProcessAndDisplayNumber(operations, 2.0);
      ProcessAndDisplayNumber(operations, 7.94);
      ProcessAndDisplayNumber(operations, 1.414);
      Console.WriteLine();
      Console.ReadLine();
    }

    static void ProcessAndDisplayNumber(DoubleOp action, double value)
    {
      Console.WriteLine("/nProcessAndDisplayNumber called with value = " + value);
      action(value);
    }
  }

  class MathsOperations
  {
    public static void MultiplyByTwo(double value)
    {
      double result = value*2;
      Console.WriteLine("Multiplying by 2: {0} gives {1}", value, result);
    }

    public static void Square(double value)
    {
      double result = value*value;
      Console.WriteLine("Squaring: {0} gives {1}", value, result);
    }
  }

原创粉丝点击