码迷,mamicode.com
首页 > 其他好文 > 详细

Base关键字,指定调用基类中的哪个构造函数

时间:2015-06-06 11:51:52      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

 

 

父类:

技术分享
 class Person
    {
        public Person()
        {
            Console.WriteLine("========================");
        }

        public Person(string name, int age, string email)
        {
            this.Name = name;
            this.Age = age;
            this.Email = email;
        }



        public string Name { get; set; }
        public int Age { get; set; }
        public string Email { get; set; }
    }
View Code

子类:

技术分享
 class Teacher : Person
    {
        public Teacher(string name, int age, string email, double salary)
            : base(name, age, email)
        {
            //this.Name = name;
            //this.Age = age;
            //this.Email = email;
            this.Salary = salary;
        }
        public double Salary { get; set; }
    }
View Code

这样是调用父类中第二个有参的构造函数,如果去掉Base默认调用无参构造函数

注意执行顺序是:先调用父类的构造函数,然后再执行子类自己的构造函数。 

 

Base关键字,指定调用基类中的哪个构造函数

标签:

原文地址:http://www.cnblogs.com/xiaoshi212/p/4556190.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!