溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

C#中怎么利用類實(shí)現(xiàn)一個(gè)接口

發(fā)布時(shí)間:2021-07-07 17:37:24 來源:億速云 閱讀:219 作者:Leah 欄目:編程語言

這篇文章給大家介紹C#中怎么利用類實(shí)現(xiàn)一個(gè)接口,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

C#類實(shí)現(xiàn)接口

前面我們已經(jīng)說過,接口定義不包括方法的實(shí)現(xiàn)部分。接口可以通過類或結(jié)構(gòu)來實(shí)現(xiàn)。我們主要講述通過類來實(shí)現(xiàn)接口。用類來實(shí)現(xiàn)接口時(shí),接口的名稱必須包含在類定義中的基類列表中。

下面的例子給出了C#類實(shí)現(xiàn)接口的例子。其中ISequence 為一個(gè)隊(duì)列接口,提供了向隊(duì)列尾部添加對象的成員方法Add( ),IRing 為一個(gè)循環(huán)表接口,提供了向環(huán)中插入對象的方法Insert(object obj),方法返回插入的位置。類RingSquence 實(shí)現(xiàn)了接口ISequence 和接口IRing。

using System ;  interface ISequence {  object Add( ) ;  }  interface ISequence {  object Add( ) ;  }  interface IRing {  int Insert(object obj) ;  }  class RingSequence: ISequence, IRing  {  public object Add( ) {…}  public int Insert(object obj) {…}  }

如果類實(shí)現(xiàn)了某個(gè)接口,類也隱式地繼承了該接口的所有父接口,不管這些父接口有沒有在類定義的基類表中列出??聪旅娴睦樱?/p>

using System ;  interface IControl {  void Paint( );  }  interface ITextBox: IControl {  void SetText(string text);  }  interface IListBox: IControl {  void SetItems(string[] items);  }  interface IComboBox: ITextBox, IListBox { }

這里, 接口IcomboBox繼承了ItextBox和IlistBox。類TextBox不僅實(shí)現(xiàn)了接口ITextBox,還實(shí)現(xiàn)了接口ITextBox 的父接口IControl。

前面我們已經(jīng)看到,一個(gè)類可以實(shí)現(xiàn)多個(gè)接口。再看下面的例子:

interface IDataBound {  void Bind(Binder b);  }  public class EditBox: Control, IControl, IDataBound {  public void Paint( );  public void Bind(Binder b) {...}  }

類EditBox從類Control中派生并且實(shí)現(xiàn)了Icontrol和IdataBound。在前面的例子中接口Icontrol中的Paint方法和IdataBound接口中的Bind方法都用類EditBox中的公共成員實(shí)現(xiàn)。C#提供一種實(shí)現(xiàn)這些方法的可選擇的途徑,這樣可以使執(zhí)行這些的類避免把這些成員設(shè)定為公共的。C#類實(shí)現(xiàn)接口成員可以用有效的名稱。

關(guān)于C#中怎么利用類實(shí)現(xiàn)一個(gè)接口就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI