展示C#模板的能力

來源:互聯網
上載者:User

其實C#模版的能力不強,一些代碼便可以基本展示C#模版的能力。並且C#的模版就在也沒有更多的能力了。最初接觸C# 2.0的模版時,感到興奮,沒多少天就覺得其能力還是很受限的。可能這也體現了簡單易用的一個原則吧,畢竟C#是一個福士化的語言!

 //不同於C++,需要使用template<class T, class V>
 //或者template<typename T, typename V>聲明模板參數
 public class A<T, V>
 {
       public static int I = 0;
 }

 //部分執行個體化
 public class A<T> : A<T, object>
 {
       public static new int I = A<T, object>.I + 1;
 }

 //部分執行個體化,約束T必須實現介面ICollection<T>
 public class C<T> : A<T, string> where T : ICollection<T>
 {
 }

 public class D
 {
       //模板化的方法,約束T必須有預設建構函式
       public T F<T>() where T : new()
       {
             return new T();
       }
 }
相關文章

聯繫我們

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