标签:style blog http io ar color sp on div
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace nange_1 { class A { private int Amyint = 2; public A() //2.基类的构造函数调用 { Console.WriteLine("调用基类的构造函数{0} ", Amyint); } } class B : A { private int Bmyint_1 = 3;//1.成员初始化 private int Bmyint_2= 4; public B() //3.构造函数体执行 { Console.WriteLine("调用派生类的构造函数{0} {1}", Bmyint_1, Bmyint_2); } } class Program { static void Main(string[] args) { B objB = new B(); //创建这个实例过程中完成的第一件事是初始化对象的所有实例成员。在此之后,调用基类的构造函数,然后才执行该类自己的构造函数体 Console.ReadLine(); } } }
标签:style blog http io ar color sp on div
原文地址:http://www.cnblogs.com/leijiangtao/p/4133775.html