A->B->C (EXTENDS)
How the constructors are called when we created an object of C

Answers were Sorted based on User's Feedback



A->B->C (EXTENDS) How the constructors are called when we created an object of C..

Answer / ramkishore mateti

When you intantiate Class C then the Class C Constructor
calls its base class(class b) constructor, Class b calls
its baseclass constructor i.e Class a, Class a calls its
base class constructor System.object.System.object
intiallizes class fields, then it comes to Class a it
intializes thier class fields and it comes to Class b after
intilalizion at last the Class C constructor intializes
their class fields.
Hence the Hierarchy of class Constructors are called are
a , b, c

Is This Answer Correct ?    11 Yes 1 No

A->B->C (EXTENDS) How the constructors are called when we created an object of C..

Answer / kiran

constructor are called in this order
a,b,c

Is This Answer Correct ?    7 Yes 2 No

A->B->C (EXTENDS) How the constructors are called when we created an object of C..

Answer / priya

the constructor of class A is called first then Class B and
at the end class C.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What is array formula?

0 Answers  


What is the main purpose of delegates in c#?

0 Answers  


What is Implementation inheritance and interface inheritance?

0 Answers  


Why attributes are used in c#?

0 Answers  


What is difference between gridview and form view?

0 Answers  


Is there any sample c# code for simple threading?

0 Answers  


What is short in c#?

0 Answers  


What are regular expressions? Search a string using regular expressions?

0 Answers  


What is the purpose of a namespace?

0 Answers  


What is lazy keyword in c#?

0 Answers  


In which situation(s), the use of "Delegate" is a good idea?

0 Answers   MCN Solutions,


What is the advantage of generics in c#?

0 Answers  


Categories