C#多態及介面學習

來源:互聯網
上載者:User

標籤:override   必須   ring   span   抽象方法   style   private   object   修飾符   

直接看代碼吧

using System;using static System.Console;namespace ConsoleApp{    //使用abstract,抽象類別或方法,不能使用virtual,衍生類別必須實現所有抽象方法    abstract class Shape     {        public int Size { get; set; }        public  virtual void Draw()        {            WriteLine("shap");        }    }    //密封類(方法),就不能派生(重寫) string類為密封的    sealed class Rect: Shape    {        public override void Draw()        {            WriteLine("rect");            //base.Draw();        }    }    //介面 相當於抽象類別    //不能聲明成員的修飾符,成員總是public,不能聲明為virtual    //介面也可以彼此繼承,從而添加新的聲明    public interface IMyInterface    {        //可以包含方法、屬性、索引器和事件的聲明,不能實現        void Draw();        int Size { get; set; }    }    //繼承介面的類必須實現介面的所有東西    class A : IMyInterface    {        public void Draw()        {            WriteLine(‘A‘);        }        private int _size;        public int Size        {            get            {                return _size;            }            set            {                _size = value;            }        }    }    class B : IMyInterface    {        public void Draw()        {            WriteLine(‘B‘);        }        private int _size;        public int Size        {            get            {                return _size;            }            set            {                _size = value;            }        }    }    class Program    {        public void as_is(object o)        {            //1 ,如果該object類型不對就會引發InvalidCastException異常            IMyInterface myinterface = (IMyInterface)o;            myinterface.Draw();            //2 as            IMyInterface myinterface1 = o as IMyInterface;            if (myinterface1 != null)            {                myinterface1.Draw();            }            //3 is            if (o is IMyInterface)            {                IMyInterface myinterface2 = (IMyInterface)o;                myinterface2.Draw();            }        }        static void Main(string[] args)        {            Shape s = new Rect();            s.Draw();            //介面可以引用任何實現該介面的類            IMyInterface a = new A();            IMyInterface b = new B();            a.Draw();            b.Draw();                    }    }}

 

C#多態及介面學習

聯繫我們

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