您好,登錄后才能下訂單哦!
這篇文章主要介紹“C#抽象類怎么理解”,在日常操作中,相信很多人在C#抽象類怎么理解問題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”C#抽象類怎么理解”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
C#抽象類將一個(gè)(或多個(gè))方法或?qū)傩月暶鳛槌橄蟮?。這樣的方法并不具有聲明它們的類中提供的實(shí)現(xiàn),盡管C#抽象類也可以包含非抽象方法,也就是說,已經(jīng)為其方法提供了實(shí)現(xiàn)。C#抽象類不能直接實(shí)例化,而只能作為派生類。這樣的派生類必須為所有的抽象方法和屬性提供實(shí)現(xiàn)(使用 override 關(guān)鍵字),除非派生成員本身被聲明為抽象的。
下面的示例聲明了一個(gè)抽象的 Employee 類。我們還創(chuàng)建了一個(gè)名為 Manager 的派生類,它提供了定義在 Employee 類中的抽象方法 show() 的實(shí)現(xiàn):
using System; public abstract class Employee { // abstract show method public abstract void show(); } // Manager class extends Employee public class Manager: Employee { string name; public Manager(string name) { this.name = name; } //override the show method public override void show() { Console.WriteLine("Name : " + name); } } public class CreateManager { public static void Main(string[] args) { // Create instance of Manager and assign it to an Employee reference Employee temp = new Manager("John Chapman"); //Call show method. This will call the show method of the Manager class temp.show(); } }
這段代碼調(diào)用了由 Manager 類提供的 show() 實(shí)現(xiàn),并且在屏幕上打印出雇員的名字。
到此,關(guān)于“C#抽象類怎么理解”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。