2
Reply

What is Constructor Chaining

Pradeep Yadav

Pradeep Yadav

May 23, 2017
389
0

    Constructor Chaining is a way to connect two or more classes in a relationship as Inheritance, in Constructor Chaining every child class constructor is mapped to parent class Constructor implicitly by base keyword so when you create an instance of child class to it’ll call parent’s class Constructor without it inheritance is not possible.

    Pradeep Yadav
    May 23, 2017
    1

    Contstructor chaining is an approach where one constructor can call another constructor in the same class or base class.

    Rajani Pandey
    January 07, 2018
    0