C#–virtual,abstract,override,new,sealed

來源:互聯網
上載者:User

virtual:使用此關鍵字,可以使其在衍生類別中被重寫.

abstract:抽象方法,由子類重寫,或繼續為抽象方法存在,並由其子子類實現.

override: 重寫父類方法,屬性,或事件的抽象實現或虛方法.

new:顯式隱藏從父類繼承的成員.

 

後台代碼:

public abstract class Animal{    public abstract void Eat();    public virtual void Sleep()    {        HttpContext.Current.Response.Write("動物正在睡覺!<hr/>");    }}public class Horse : Animal{    public override void Eat()    {        HttpContext.Current.Response.Write("馬在吃草!<br/>");    }    public override void Sleep()    {        HttpContext.Current.Response.Write("馬是站著睡覺!<hr/>");    }}public class Cat : Animal{    public override void Eat()    {        HttpContext.Current.Response.Write("貓在吃食!<br/>");    }    public new void Sleep()    {        HttpContext.Current.Response.Write("貓是趴著睡覺的!<hr/>");    }}
前台調用 效果
    protected void Page_Load(object sender, EventArgs e)    {        Animal an1 = new Horse();        an1.Eat();        an1.Sleep();        Animal an2 = new Cat();        an2.Eat();        an2.Sleep();        Horse an3 = new Horse();        an3.Eat();        an3.Sleep();        Cat an4 = new Cat();        an4.Eat();        an4.Sleep();    }

 

補充:

當sealed修飾方法時,sealed必須與override一起使用.

sealed將使您能夠允許類從您的類繼承,並防止它們重寫特定的虛方法或虛屬性

public class Cat : Animal{    public sealed override void Eat()    {        HttpContext.Current.Response.Write("貓在吃食!<br/>");    }    public new void Sleep()    {        HttpContext.Current.Response.Write("貓是趴著睡覺的!<hr/>");    }}public class LitCat : Cat{    public new void Sleep()    {        HttpContext.Current.Response.Write("貓是趴著睡覺的!<hr/>");    }}

此時,在LitCat類中,就不會出現override Eat方法了.

相關文章

聯繫我們

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