C# where泛型約束

來源:互聯網
上載者:User
最近無意中看到了:http://www.php.cn/。但是,人笨啊,木有看懂到底是啥意思,木辦法自己寫一個試試吧,權當做個筆記

例子如下:

介面:


using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace WhereTest{    /// <summary>    /// 水果介面    /// </summary>    public interface IFruit    {        //水果名稱        string FruitName        {            get;            set;        }        string GetName();        /*介面中只能包含方法、屬性、索引器和事件的聲明。         * 不允許聲明成員上的修飾符,即使是pubilc都不行,因為介面成員總是公有的,也不能聲明為虛擬和靜態。         * 如果需要修飾符,最好讓實作類別來聲明。        */    }}



介面實現:


using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace WhereTest{    /// <summary>    /// 梨子類    /// </summary>    public class Peach : IFruit    {        //無參、公用 建構函式        public Peach()        {        }        private string fruitName;        string IFruit.FruitName        {            get            {                return this.ToString(); ;            }            set            {                fruitName = value;            }        }        string IFruit.GetName()        {            return string.IsNullOrEmpty(fruitName) ? "木有找到名字" : fruitName;        }    }}


建立一個帶有泛型約束的類:



using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace WhereTest{    /// <summary>    /// 帶有泛型約束的類    /// </summary>    /// <typeparam name="T"></typeparam>    public class FruitMarket<T>        where T : IFruit,        new()//new()的意思是,這個T必須有public建構函式    {        T item = new T();         public void FruitSayHello()        {            item.FruitName = "我是梨子";            Console.WriteLine("你好:" + string.Format("Fruit:{0}", item.GetName()));            Console.ReadKey();        }        /*在定義泛型類時,可以對用戶端代碼能夠在執行個體化類時用於型別參數的類型種類施加限制。         * 如果用戶端代碼嘗試使用某個約束所不允許的類型來執行個體化類,則會產生編譯時間錯誤。*/    }}


由於有where字句的泛型約束,所以,建立FruitMarket的對象時,T的類型只能是繼承自IFruit介面的類。



using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace WhereTest{    class Program    {        static void Main(string[] args)        {            //執行個體化之後 只能在static方法中調用相應的方法,否則 根本找不著peach變數            FruitMarket<Peach> peach = new FruitMarket<Peach>();            peach.FruitSayHello();        }    }}


運行結果:


以上就是C# where泛型約束的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    聯繫我們

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