C#進階編程(第8版)——委託聲明、使用(第一節)

來源:互聯網
上載者:User

標籤:blog   使用   os   for   工作   代碼   

首先,聲明一個Currency的結構。Currency結構有自己的ToString()重載方法和一個與GetCurrencyUnit()的簽名相同的靜態方法。這樣,就可以用同一個委託變數調用這些方法了:

   

 struct Currency    {        public uint Dollars;        public ushort Cents;        public Currency(uint dollars, ushort cents)        {            this.Dollars = dollars;            this.Cents = cents;        }        public override string ToString()        {            return string.Format("${0}.{1,-2:00}", Dollars, Cents);        }        public static string GetCurrencyUnit()        {            return "Dollar";        }        public static explicit operator Currency(float value)        {            checked            {                uint dollars = (uint)value;                ushort cents = (ushort)((value - dollars) * 100);                return new Currency(dollars, cents);            }        }        public static implicit operator float(Currency value)        {            return value.Dollars + (value.Cents / 100.0f);        }        public static implicit operator Currency(uint value)        {            return new Currency(value, 0);        }        public static implicit operator uint(Currency value)        {            return value.Dollars;        }    }

下面就是GetString執行個體,代碼如下:

 private delegate string GetAString();        static void Main()        {            int x = 40;            GetAString firstStringMethod = x.ToString;            Console.WriteLine("String is {0}", firstStringMethod());            Currency balance = new Currency(34, 50);            // firstStringMethod references an instance method            firstStringMethod = balance.ToString;            Console.WriteLine("String is {0}", firstStringMethod());            // firstStringMethod references a static method            firstStringMethod = new GetAString(Currency.GetCurrencyUnit);            Console.WriteLine("String is {0}", firstStringMethod());        }

  這段代碼說明了如何通過委託調用方法,然後重新給委託指定在類的不同執行個體上的引用的不同方法,甚至可以指定靜態方法,或者在類的不同類型的執行個體上引用的方法。只要每個方法的簽名匹配委託定義即可。

     運行上面的程式,會得到委託引用的不同方法的輸出結果:

       String is 40

       String is $34.50

       String is Dollar

     但是,我們實際上還沒有說明把一個委託傳遞給另外一個方法的具體過程,也沒有得到任何特別有用的結果。調用int和Currency對象的ToString()的方法要比使用委託直觀的多!!! 但是,需要用一個相當複雜的的樣本來說明委託的本質,才能真正領悟到委託的用處。等到下一節,書中就會給出兩個委託的樣本。第一個樣本僅使用委託調用兩個不同的操作。他說明了如何把委託傳遞給方法,如何使用委託數組,但是這仍然沒有很好的說明:沒有委託,就不能完成很多工作。第二個樣本就複雜得多了,它有一個類BubbleSorter,這個類實現了一個方法,按照升序排列一個對象數組。沒有委託是很難編寫出這個類的!!!(詳見下一節)

相關文章

聯繫我們

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