A->B->C (EXTENDS)
How the constructors are called when we created an object of C
Answers were Sorted based on User's Feedback
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 |
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 |
What?s different about switch statements in C#?
What is data types in c#?
What is the adv of using System.Text.StringBuilder over System.String?
What is the Difference between imperative and interrogative code?
What is default method in c#?
If I have code like try { return; } catch { return; } finally { return; } from which block will the value will be returned. and try has been executed without any error.
Which property of the textbox cannot be changed at runtime?
Tell me the difference between value passing and address passing?
what is read only and constant
what are nullable types in c#
what are wrapper classes?
Define Virtual folder?