C#中泛型的特性3-繼承

來源:互聯網
上載者:User
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace 泛型
  6. {
  7.     //泛型特性3 繼承
  8.     // 泛型類可以執行泛型介面,也可以派生於一個類
  9.     class 泛型的特性
  10.     {
  11.         public static void Main()
  12.         {
  13.             //Derived<int> sub = new Derived<int>();
  14.             ////在子類聲明時重複父類的類型T,那麼,子類父親類是一樣的!(int)
  15.             //sub.PrintInfo(22);
  16.             //sub.SubPrint(22);
  17.             
  18.             //如果父親聲明為string ,那麼,則子類是int 父類是string
  19.             Derived<int> sub = new Derived<int>();
  20.             sub.PrintInfo("22");
  21.             sub.SubPrint(22);
  22.             Console.ReadLine();
  23.         }
  24.     }
  25.     class Base<T>
  26.     {
  27.         public void PrintInfo( T t)
  28.         {
  29.             Console.WriteLine( t );
  30.         }
  31.     }
  32.     //繼承一個類時,必須重複或者指定基類的泛型型別!
  33.     class Derived<T> : Base<string> // or  Baset<int> 指定
  34.     {
  35.         public void SubPrint( T t)
  36.         {
  37.             Console.WriteLine(t);
  38.         }
  39.     }
  40.     abstract class Calc<T>
  41.     {
  42.         public abstract T Add(T x, T y);
  43.         public abstract T Sub(T x, T y);
  44.     }
  45.     //泛型類的子類不一定非得是泛型類,因為他可以為父類指定具體的類型!
  46.     class SimpleCalc : Calc<int>
  47.     {
  48.         //因為指定了具體類型,所以我們的實現可以用public override int Add(int x, int y) --int
  49.         //否則,本類也必須是泛型類實現變成了public override T Add(int x, int y) ----T
  50.         public override int Add(int x, int y)
  51.         {
  52.             return x + y;
  53.         }
  54.         public override int Sub(int x, int y)
  55.         {
  56.             return x - y;
  57.         }
  58.          
  59.     }
  60. }

聯繫我們

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