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.     class 泛型方法
  9.     {
  10.         public static void Main()
  11.         { 
  12.             //將所有賬目加入到List集合中
  13.             List<Account> list = new List<Account>();
  14.             list.Add( new Account( "aladdin" , 1000 ) );
  15.             list.Add(new Account("zhaohaifu", 2000));
  16.             list.Add(new Account("jacky", 3000));
  17.             //計算總合
  18.             decimal total = Algorithm.AccumulateSimple( list );
  19.             Console.WriteLine( "賬單總計:" + total );
  20.             Console.ReadLine();
  21.         }
  22.     }
  23.     //計算類
  24.     class Algorithm
  25.     {
  26.         public static decimal AccumulateSimple<TAccount>( IEnumerable<TAccount> e )
  27.             where TAccount : Account
  28.         { 
  29.             decimal redec = 0 ;
  30.             foreach( TAccount a in e )
  31.             {
  32.                 redec += a.Balance;
  33.             }
  34.             return redec;
  35.         }
  36.     }
  37.     //帳目類
  38.     class Account
  39.     {
  40.         private string name;
  41.         public string Name
  42.         {
  43.             get { return name; }
  44.             set { name = value; }
  45.         }
  46.         private decimal balance;
  47.         public decimal Balance
  48.         {
  49.             get { return balance; }
  50.             set { balance = value; }
  51.         }
  52.         public Account( string name , decimal balance )
  53.         {
  54.             this.name = name;
  55.             this.balance = balance;
  56.         }
  57.     }
  58. }

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.