C # Small Test (i): class member initialization and constructor execution order

Source: Internet
Author: User
Tags constructor

Look at the code below, what do you think it will output?

class Foo
  {
    public Foo(string s)
    {
      Console.WriteLine("Foo constructor: {0}", s);
    }
    public void Bar(){}
  }
  class Base
  {
    readonly Foo baseFoo = new Foo("Base initializer");
    public Base()
    {
      Console.WriteLine("Base constructor");
    }
  }
  class Derived : Base
  {
    readonly Foo derivedFoo = new Foo("Derived initializer.");
    public Derived()
    {
      Console.WriteLine("Derived constructor");
    }
  }
  class Program
  {
    static void Main(string[] args)
    {
      new Derived();
    }
  }

Guess first, it seems to be "base initializer, base constructor, Derived initializer, Derived constructor".

In fact, the initialization of class members should be performed first, in order from derived to base, then two constructors, sorted from base to derived.

This approach is very meaningful, in the class inheritance system in the deeper class (farther from the System.Object) will depend on the lighter class (closer to the System.Object). But many people will believe that the order of invocation should be equivalent to the following pseudocode:

// 期望的顺序
BaseConstructor()
{
  ObjectConstructor();
  baseFoo = new Foo("Base initializer");
  Console.WriteLine("Base constructor");
}
DerivedConstructor()
{
  BaseConstructor();
  derivedFoo = new Foo("Derived initializer");
  Console.WriteLine("Derived constructor");
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.