Base constructor in C# - Which gets called first?

C#.Netasp.net

C# Problem Overview


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
    }
}

C# Solutions


Solution 1 - C#

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:

Solution 2 - C#

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");
  }
}

Solution 3 - C#

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.)

Solution 4 - C#

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.

Solution 5 - C#

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.

Solution 6 - C#

I'd say base

EDIT see:

http://www.c-sharpcorner.com/UploadFile/rajeshvs/ConsNDestructorsInCS11122005010300AM/ConsNDestructorsInCS.aspx

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

Solution 7 - C#

Base Constructor is called first. But the initializer of fields in derived class is called first.

The calling order is

  1. derived class field initializer
  2. base class field initializer
  3. base class constructor
  4. 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 example > > using 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 of B, the following > output is produced: > > x = 1, y = 0 > > The value of x is 1 because the variable initializer is executed > before the base class instance constructor is invoked. However, the > value of y is 0 (the default value of an int) because the assignment > to y is 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 example > > using 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; > } > } >

Solution 8 - C#

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

Solution 9 - C#

Solution 10 - C#

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

Solution 11 - C#

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.

Solution 12 - C#

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.

Solution 13 - C#

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.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMike ComstockView Question on Stackoverflow
Solution 1 - C#Sam MeldrumView Answer on Stackoverflow
Solution 2 - C#craigbView Answer on Stackoverflow
Solution 3 - C#David PokludaView Answer on Stackoverflow
Solution 4 - C#Paolo TedescoView Answer on Stackoverflow
Solution 5 - C#Joel B FantView Answer on Stackoverflow
Solution 6 - C#MastermindView Answer on Stackoverflow
Solution 7 - C#zwcloudView Answer on Stackoverflow
Solution 8 - C#Emperor XLIIView Answer on Stackoverflow
Solution 9 - C#mmcdoleView Answer on Stackoverflow
Solution 10 - C#CheGueVerraView Answer on Stackoverflow
Solution 11 - C#kafuchauView Answer on Stackoverflow
Solution 12 - C#Chris CudmoreView Answer on Stackoverflow
Solution 13 - C#edirtyfourView Answer on Stackoverflow