這篇文章主要介紹“C#抽象類怎么理解”,在日常操作中,相信很多人在C#抽象類怎么理解問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”C#抽象類怎么理解”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
成都創(chuàng)新互聯(lián)公司主要從事成都網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)、外貿(mào)網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)齊河,十年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來(lái)電咨詢建站服務(wù):028-86922220
C#抽象類將一個(gè)(或多個(gè))方法或?qū)傩月暶鳛槌橄蟮?。這樣的方法并不具有聲明它們的類中提供的實(shí)現(xiàn),盡管C#抽象類也可以包含非抽象方法,也就是說(shuō),已經(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)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!