C#中的泛型委派

來源:互聯網
上載者:User
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace 泛型
  7. {
  8.     //定義委託:Tinput是要累加的對象 TSummary是要返回的類型
  9.     
  10.     class 泛型方法
  11.     {
  12.        
  13.         public static void Main()
  14.         {
  15.             //將所有賬目加入到List集合中
  16.             List<Account> list = new List<Account>();
  17.             list.Add(new Account("aladdin", 1000));
  18.             list.Add(new Account("zhaohaifu", 2000));
  19.             list.Add(new Account("jacky", 3000));
  20.             //計算總合
  21.             decimal amount = Algorithm.Accumulate<Account , decimal>(list, MydelImpl );
  22.             Console.WriteLine( amount );
  23.             //例用帶檢查功能的Function Compute總合,低於1500的,不參加計算
  24.             decimal checkedNum = Algorithm.CheckedAccumulate<Account, decimal>( a => a.Balance > 1500 , list, MydelImpl);
  25.             Console.WriteLine( "小於1500不參加計算:" + checkedNum);
  26.             Console.ReadLine();
  27.         }
  28.         //委託的實現方法
  29.         public static decimal  MydelImpl( Account a , decimal d)
  30.         {
  31.             return a.Balance  + d;
  32.         }
  33.     }
  34.     //計算類
  35.     class Algorithm
  36.     {
  37.         //定義委託,TInput要是計算累加的內容 , TSummary是要返回的類型 
  38.         public delegate TSummary Action<TInput, TSummary>(TInput input, TSummary sum);
  39.         //兩個參數,一個是要類加的內容 e,一個是委託類型 action
  40.         public static TSummary Accumulate<TInput, TSummary>( IEnumerable<TInput> e , Action<TInput ,TSummary> action )
  41.         {
  42.             //初始化值
  43.             TSummary tsum = default(TSummary) ;
  44.             foreach (TInput i in e)
  45.             {
  46.                 //迴圈調用委託方法,將值累加。
  47.                 tsum = action(i, tsum);
  48.             }
  49.             return tsum;
  50.         }
  51.         //添加檢查功能的計算方法
  52.         public delegate bool CheckMyAccount<TInput>(TInput t);
  53.         public static TSummary CheckedAccumulate<TInput, TSummary>( CheckMyAccount<TInput> check , IEnumerable<TInput> e , Action<TInput ,TSummary> action )
  54.         { 
  55.             TSummary rest = default(TSummary) ;
  56.             foreach (TInput i in e)
  57.             {
  58.                 if( check(i))
  59.                 {
  60.                     //迴圈調用委託方法,將值累加。
  61.                     rest = action(i, rest);
  62.                 }
  63.             }
  64.             return rest;
  65.         }
  66.     }
  67.     //帳目類
  68.     class Account
  69.     {
  70.         private string name;
  71.         public string Name
  72.         {
  73.             get { return name; }
  74.             set { name = value; }
  75.         }
  76.         private decimal balance;
  77.         public decimal Balance
  78.         {
  79.             get { return balance; }
  80.             set { balance = value; }
  81.         }
  82.         public Account(string name, decimal balance)
  83.         {
  84.             this.name = name;
  85.             this.balance = balance;
  86.         }
  87.     }
  88. }

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.