Which gets called first – the base constructor or “other stuff here”?
public class MyExceptionClass : Exception
{
public MyExceptionClass(string message, string extrainfo) : base(message)
{
//other stuff here
}
}
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
Base class constructors get called before derived class constructors, but derived class initializers get called before base class initializers. E.g. in the following code:
public class BaseClass {
private string sentenceOne = null; // A
public BaseClass() {
sentenceOne = "The quick brown fox"; // B
}
}
public class SubClass : BaseClass {
private string sentenceTwo = null; // C
public SubClass() {
sentenceTwo = "jumps over the lazy dog"; // D
}
}
Order of execution is: C, A, B, D.
Check out these 2 msdn articles:
- Why do initializers run in the opposite order as constructors? Part One
- Why do initializers run in the opposite order as constructors? Part Two
Method 2
The base constructor will be called first.
try it:
public class MyBase
{
public MyBase()
{
Console.WriteLine("MyBase");
}
}
public class MyDerived : MyBase
{
public MyDerived():base()
{
Console.WriteLine("MyDerived");
}
}
Method 3
Don’t try to remember it, try to explain to yourself what has to happen. Imagine that you have base class named Animal and a derived class named Dog. The derived class adds some functionality to the base class. Therefore when the constructor of the derived class is executed the base class instance must be available (so that you can add new functionality to it). That’s why the constructors are executed from the base to derived but destructors are executed in the opposite way – first the derived destructors and then base destructors.
(This is simplified but it should help you to answer this question in the future without the need to actually memorizing this.)
Method 4
Actually, the derived class constructor is executed first, but the C# compiler inserts a call to the base class constructor as first statement of the derived constructor.
So: the derived is executed first, but it “looks like” the base was executed first.
Method 5
As others have said, the base constructor gets called first. However, constructors are not really the first thing that happens.
Let’s say you have classes like this:
class A {}
class B : A {}
class C : B {}
First, field initializers will be called in order of most-derived to least-derived classes. So first field initializers of C, then B, then A.
The constructors will then be called in the opposite order: First A‘s constructor, then B, then C.
Method 6
I’d say base
EDIT see:
there it says:
using System;
class Base
{
public Base()
{
Console.WriteLine("BASE 1");
}
public Base(int x)
{
Console.WriteLine("BASE 2");
}
}
class Derived : Base
{
public Derived():base(10)
{
Console.WriteLine("DERIVED CLASS");
}
}
class MyClient
{
public static void Main()
{
Derived d1 = new Derived();
}
}
This program outputs
BASE2
DERIVED CLASS
Method 7
Base Constructor is called first. But the initializer of fields in derived class is called first.
The calling order is
- derived class field initializer
- base class field initializer
- base class constructor
- derived class constructor
(You can treat 2 and 3 as a whole to construct the base class.)
Taken from CSharp Language Speification 5.0:
10.11.3 Constructor execution
Variable initializers are transformed into assignment statements, and these assignment
statements are executed before the invocation of the base class
instance constructor. This ordering ensures that all instance fields
are initialized by their variable initializers before any statements
that have access to that instance are executed. Given the exampleusing System; class A { public A() { PrintFields(); } public virtual void PrintFields() {} } class B: A { int x = 1; int y; public B() { y = -1; } public override void PrintFields() { Console.WriteLine("x = {0}, y = {1}", x, y); } }when
new B()is used to create an instance ofB, the following
output is produced:x = 1, y = 0The value of
xis 1 because the variable initializer is executed
before the base class instance constructor is invoked. However, the
value ofyis 0 (the default value of anint) because the assignment
toyis not executed until after the base class constructor returns.
It is useful to think of instance variable initializers and
constructor initializers as statements that are automatically inserted
before the constructor-body. The exampleusing System; using System.Collections; class A { int x = 1, y = -1, count; public A() { count = 0; } public A(int n) { count = n; } } class B: A { double sqrt2 = Math.Sqrt(2.0); ArrayList items = new ArrayList(100); int max; public B(): this(100) { items.Add("default"); } public B(int n): base(n – 1) { max = n; } }contains several variable initializers; it also contains constructor
initializers of both forms (base and this). The example corresponds to
the code shown below, where each comment indicates an automatically
inserted statement (the syntax used for the automatically inserted
constructor invocations isn’t valid, but merely serves to
illustrate the mechanism).using System.Collections; class A { int x, y, count; public A() { x = 1; // Variable initializer y = -1; // Variable initializer object(); // Invoke object() constructor count = 0; } public A(int n) { x = 1; // Variable initializer y = -1; // Variable initializer object(); // Invoke object() constructor count = n; } } class B: A { double sqrt2; ArrayList items; int max; public B(): this(100) { B(100); // Invoke B(int) constructor items.Add("default"); } public B(int n): base(n – 1) { sqrt2 = Math.Sqrt(2.0); // Variable initializer items = new ArrayList(100); // Variable initializer A(n – 1); // Invoke A(int) constructor max = n; } }
Method 8
Eric Lippert had an interesting post on the related issue of object initialization, which explains the reason for the ordering of constructors and field initializers:
Why Do Initializers Run In The Opposite Order As Constructors? Part One
Why Do Initializers Run In The Opposite Order As Constructors? Part Two
Method 9
http://www.devhood.com/tutorials/tutorial_details.aspx?tutorial_id=777
Base Constructor gets called first.
Method 10
The Exception Constructor will be called, then your Child class constructor will be called.
Simple OO principle
Have a look here
http://www.dotnet-news.com/lien.aspx?ID=35151
Method 11
The base constructor will be called first, otherwise, in cases where your “other stuff” must make use of member variables initialized by your base constructor, you’ll get compile time errors because your class members will not have been initialized yet.
Method 12
base(?) is called before any work is done in the child constructor.
This is true, even if you leave off the :base() (in which case, the 0-parameter base constructor is called.)
It works similar to java,
public Child()
{
super(); // this line is always the first line in a child constructor even if you don't put it there! ***
}
*** Exception: I could put in super(1,2,3) instead. But if I don’t put a call to super in explicitly, super() is called.
Method 13
Constructor calls are called (fired) from the bottom up, and executed from the top down. Thus, if you had Class C which inherits from Class B which inherits from Class A, when you create an instance of class C the constructor for C is called, which in turn calls the instructor for B, which again in turn calls the constructor for A. Now the constructor for A is executed, then the constructor for B is executed, then the constructor for C is executed.
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0