C#中泛型方法與泛型介面

來源:互聯網
上載者:User
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace 泛型
  6. {
  7.     class 泛型介面
  8.     {
  9.         public static void Main()
  10.         {
  11.             PersonManager man = new PersonManager();
  12.             Person per = new Person();
  13.             man.PrintYourName(per);
  14.             Person p1 = new Person();
  15.             p1.Name = "p1";
  16.             Person p2 = new Person();
  17.             p2.Name = "p2";
  18.             man.SwapPerson<Person>(ref p1, ref p2);
  19.             Console.WriteLine( "P1 is {0} , P2 is {1}" , p1.Name ,p2.Name);
  20.             Console.ReadLine();
  21.         }
  22.     }
  23.     //泛型介面
  24.     interface IPerson<T>
  25.     {
  26.         void PrintYourName( T t);
  27.     }
  28.     class Person
  29.     {
  30.         public string Name = "aladdin";
  31.     }
  32.     class PersonManager : IPerson<Person>
  33.     {
  34.         #region IPerson<Person> 成員
  35.         public void PrintYourName( Person t )
  36.         {
  37.             Console.WriteLine( "My Name Is {0}!" , t.Name );
  38.         }
  39.         #endregion
  40.         //交換兩個人,哈哈。。這世道。。
  41.         //泛型方法T類型作用於參數和方法體內
  42.         public void SwapPerson<T>( ref  T p1 , ref T p2)
  43.         {
  44.             T temp = default(T) ;
  45.             temp = p1;
  46.             p1 = p2;
  47.             p2 = temp;
  48.         }
  49.     }
  50. }

聯繫我們

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