本文主要是介绍自己写的测试继承类初始化程序 有待完善 继承父类,连父类的方法都继承了,即子类对象可以调用父类方法。当然子类尅重写父类。...,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
总结如下:无论子类是无参还是有参,都要继承父类的无参构造函数。且父类的无参构造函数不能省略。。
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { public class A { public A() { Console.WriteLine("A()"); } public A(int i) { Console.WriteLine("A(i)" + i); } } public class B : A { public B() { Console.WriteLine("B()"); } public B(int i) { Console.WriteLine("B()" + i); } } public class Program { static void Main(string[] args) { //A a = new A(); B b = new B(); A a = new A(); A a1 = new A(4); Console.ReadLine(); } } }
这篇关于自己写的测试继承类初始化程序 有待完善 继承父类,连父类的方法都继承了,即子类对象可以调用父类方法。当然子类尅重写父类。...的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!