關於C#中衍生類別調用基類建構函式的理解

來源:互聯網
上載者:User

標籤:style   class   code   java   http   tar   

(1)當基類中沒有自己編寫的建構函式時,衍生類別預設條用基類的建構函式 
(2)當基類中有自己編寫的建構函式時,要在基類中添加無參的建構函式 

Java代碼  
  1. public class MyBaseClass  
  2.    {          
  3.        public MyBaseClass() { }  
  4.        public MyBaseClass(int i)  
  5.        {  
  6.   
  7.            Console.WriteLine("我是基類帶一個參數的建構函式");  
  8.   
  9.        }  
  10.   
  11.    }  
  12.   
  13.    public class MyDerivedClass : MyBaseClass  
  14.    {  
  15.         
  16.   
  17.        public MyDerivedClass()   :         {  
  18.   
  19.            Console.WriteLine("我是子類無參建構函式");  
  20.   
  21.        }  
  22.   
  23.        public MyDerivedClass(int i)         {  
  24.   
  25.            Console.WriteLine("我是子類帶一個參數的建構函式");  
  26.   
  27.        }  
  28.   
  29.        public MyDerivedClass(int i, int j)         {  
  30.   
  31.            Console.WriteLine("我是子類帶二個參數的建構函式");  
  32.   
  33.        }  
  34.   
  35.    }  
  36.   
  37.    class Program  
  38.    {  
  39.        static void Main(string[] args)  
  40.        {  
  41.            MyDerivedClass m = new MyDerivedClass();  
  42.        }  
  43.    }  


(3)在基類中有自己編寫的建構函式並且在基類中沒有添加無參的建構函式時,要在衍生類別中是用Base指定基類的建構函式 

Java代碼  
  1. public class MyBaseClass  
  2.    {          
  3.      public MyBaseClass(int i)  
  4.        {  
  5.   
  6.            Console.WriteLine("我是基類帶一個參數的建構函式");  
  7.   
  8.        }  
  9.   
  10.    }  
  11.   
  12.    public class MyDerivedClass : MyBaseClass  
  13.    {  
  14.         
  15.   
  16.        public MyDerivedClass()   : base(1)//使用Base指定基類中的建構函式  
  17.        {  
  18.   
  19.            Console.WriteLine("我是子類無參建構函式");  
  20.   
  21.        }  
  22.   
  23.        public MyDerivedClass(int i)  : base(i)  
  24.        {  
  25.   
  26.            Console.WriteLine("我是子類帶一個參數的建構函式");  
  27.   
  28.        }  
  29.   
  30.        public MyDerivedClass(int i, int j) : base(i)  
  31.        {  
  32.   
  33.            Console.WriteLine("我是子類帶二個參數的建構函式");  
  34.   
  35.        }  
  36.   
  37.    }  
  38.   
  39.    class Program  
  40.    {  
  41.        static void Main(string[] args)  
  42.        {  
  43.            MyDerivedClass m = new MyDerivedClass();  
  44.        }  
  45.    }  



註: 初始化的順序是從基類到衍生類別。初始化時首先會調用基類的建構函式初始化基類,然後調用衍生類別的建構函式初始化衍生類別。

相關文章

聯繫我們

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