在C#中关于构造函数的继承:
>我已经读过构造函数不能被继承.
>如果基类包含一个或多个构造函数,派生类必须始终调用其中一个?派生类不可能跳过基类的构造函数吗?
>派生类可以有自己的构造函数,但必须调用其中一个基类构造函数.
这些陈述是否更正?
解决方法
>是的,你是对的,构造函数不是继承的.因此,只是因为Object具有无参数构造函数,这并不意味着String具有无参数构造函数.从C#4规范的1.6.7.1节:
Unlike other members,instance constructors are not inherited,and a class has no instance constructors other than those actually declared in the class. If no instance constructor is supplied for a class,then an empty one with no parameters is automatically provided.
>是的,派生类构造函数的构造函数链将始终通过其基类构造函数…虽然它可能是间接的,因为它可以通过此(…)而不是base链接到同一类中的另一个构造函数( …).如果你没有指定this(…)或base(…),那就相当于base() – 在基类中调用无参数构造函数.
有关更多信息,请参阅我的article on constructor chaining.