What are the rules for calling the base class constructor?

915,638

Solution 1

Base class constructors are automatically called for you if they have no argument. If you want to call a superclass constructor with an argument, you must use the subclass's constructor initialization list. Unlike Java, C++ supports multiple inheritance (for better or worse), so the base class must be referred to by name, rather than "super()".

class SuperClass
{
    public:

        SuperClass(int foo)
        {
            // do something with foo
        }
};

class SubClass : public SuperClass
{
    public:

        SubClass(int foo, int bar)
        : SuperClass(foo)    // Call the superclass constructor in the subclass' initialization list.
        {
            // do something with bar
        }
};

More info on the constructor's initialization list here and here.

Solution 2

In C++, the no-argument constructors for all superclasses and member variables are called for you, before entering your constructor. If you want to pass them arguments, there is a separate syntax for this called "constructor chaining", which looks like this:

class Sub : public Base
{
  Sub(int x, int y)
  : Base(x), member(y)
  {
  }
  Type member;
};

If anything run at this point throws, the bases/members which had previously completed construction have their destructors called and the exception is rethrown to to the caller. If you want to catch exceptions during chaining, you must use a function try block:

class Sub : public Base
{
  Sub(int x, int y)
  try : Base(x), member(y)
  {
    // function body goes here
  } catch(const ExceptionType &e) {
    throw kaboom();
  }
  Type member;
};

In this form, note that the try block is the body of the function, rather than being inside the body of the function; this allows it to catch exceptions thrown by implicit or explicit member and base class initializations, as well as during the body of the function. However, if a function catch block does not throw a different exception, the runtime will rethrow the original error; exceptions during initialization cannot be ignored.

Solution 3

In C++ there is a concept of constructor's initialization list, which is where you can and should call the base class' constructor and where you should also initialize the data members. The initialization list comes after the constructor signature following a colon, and before the body of the constructor. Let's say we have a class A:


class A : public B
{
public:
  A(int a, int b, int c);
private:
  int b_, c_;
};

Then, assuming B has a constructor which takes an int, A's constructor may look like this:


A::A(int a, int b, int c) 
  : B(a), b_(b), c_(c) // initialization list
{
  // do something
}

As you can see, the constructor of the base class is called in the initialization list. Initializing the data members in the initialization list, by the way, is preferable to assigning the values for b_, and c_ inside the body of the constructor, because you are saving the extra cost of assignment.

Keep in mind, that data members are always initialized in the order in which they are declared in the class definition, regardless of their order in the initialization list. To avoid strange bugs, which may arise if your data members depend on each other, you should always make sure that the order of the members is the same in the initialization list and the class definition. For the same reason the base class constructor must be the first item in the initialization list. If you omit it altogether, then the default constructor for the base class will be called automatically. In that case, if the base class does not have a default constructor, you will get a compiler error.

Solution 4

Everybody mentioned a constructor call through an initialization list, but nobody said that a parent class's constructor can be called explicitly from the derived member's constructor's body. See the question Calling a constructor of the base class from a subclass' constructor body, for example. The point is that if you use an explicit call to a parent class or super class constructor in the body of a derived class, this is actually just creating an instance of the parent class and it is not invoking the parent class constructor on the derived object. The only way to invoke a parent class or super class constructor on a derived class' object is through the initialization list and not in the derived class constructor body. So maybe it should not be called a "superclass constructor call". I put this answer here because somebody might get confused (as I did).

Solution 5

If you have a constructor without arguments it will be called before the derived class constructor gets executed.

If you want to call a base-constructor with arguments you have to explicitly write that in the derived constructor like this:

class base
{
  public:
  base (int arg)
  {
  }
};

class derived : public base
{
  public:
  derived () : base (number)
  {
  }
};

You cannot construct a derived class without calling the parents constructor in C++. That either happens automatically if it's a non-arg C'tor, it happens if you call the derived constructor directly as shown above or your code won't compile.

Share:
915,638
levik
Author by

levik

Updated on July 27, 2022

Comments

  • levik
    levik almost 2 years

    What are the C++ rules for calling the base class constructor from a derived class?

    For example, I know in Java, you must do it as the first line of the subclass constructor (and if you don't, an implicit call to a no-arg super constructor is assumed - giving you a compile error if that's missing).

  • levik
    levik almost 16 years
    Wait a second... You say initializers save on the cost of assignments. But don't the same assignments take place inside them if called?
  • Pigsty
    Pigsty almost 16 years
    Nope. Init and assignment are different things. When a constructor is called, it will try to initialize every data member with whatever it thinks is the default value. In the init list you get to supply default values. So you incur initialization cost in either case.
  • Pigsty
    Pigsty almost 16 years
    And if you use assignment inside the body, then you incur the initialization cost anyway, and then the cost of assignment on top of that.
  • puetzk
    puetzk almost 16 years
    Yes. I've reworded the section, and fixed a mistake (the try keyword goes before the initialization list). I should have looked it up instead of writing from memory, it's not something that gets used often :-)
  • Pavel Kucherbaev
    Pavel Kucherbaev almost 16 years
    I removed 'explicit' from the SuperClass constructor. Despite being a best practice for single-argument constructors, it wasn't germane to the discussion at hand. For more info on the explicit key word, see: weblogs.asp.net/kennykerr/archive/2004/08/31/…
  • jakar
    jakar about 12 years
    Thanks for including the try/catch syntax for the initializers. I've been using C++ for 10 years, and this is the first time I've ever seen that.
  • Cameron
    Cameron over 10 years
    I got to admit, been using C++ a long time, and that is the first time I have seen that try/catcn on the constructor list.
  • Richard Chambers
    Richard Chambers about 10 years
    This answer is somewhat confusing even though I have read over it a couple of times and took a look at the linked to question. I think that what it is saying is that if you use an explicit call to a parent class or super class constructor in the body of a derived class, this is actually just creating an instance of the parent class and it is not invoking the parent class constructor on the derived object. The only way to invoke a parent class or super class constructor on a derived class' object is through the initialization list and not in the derived class constructor body.
  • TT_ stands with Russia
    TT_ stands with Russia about 10 years
    @Richard Chambers It maybe confusing since English is not my first language, but you described precisely what I tried to say.
  • ha9u63ar
    ha9u63ar over 9 years
    the colon : operator you used to invoke superclass constructor before instantiating child class constructor, I suppose this is also true for methods?
  • Pavel Kucherbaev
    Pavel Kucherbaev over 9 years
    @hagubear, only valid for constructors, AFAIK
  • Benjamin
    Benjamin over 9 years
    This answer was helpful because it showed the syntax variant where one has a header and a source file, and one does not want the initialization list in the header. Very helpful thank you.
  • LazerSharks
    LazerSharks over 9 years
    When you instantiate a SubClass object by, say, SubClass anObject(1,2), does 1 then get passed to SuperClass(foo) (becomes the argument to paramater foo)? I have been searching through docs high and low, but none definitively state that the arguments to the SubClass constructor can be passed as arguments to the SuperClass constructor.
  • Pavel Kucherbaev
    Pavel Kucherbaev over 9 years
    @Gnuey, notice the : SuperClass(foo) portion. foo is explicitly being passed to the super class's constructor.
  • LazerSharks
    LazerSharks over 9 years
    Yep, noticed that part. Just wanted was implied in code to be explicitly said in writing. Thank you.
  • user207421
    user207421 over 9 years
    If nobody talked about it, where was it mentioned?
  • Krishna Oza
    Krishna Oza over 9 years
    @EJP since the question is about calling rules , it is worth mentioning the sequence of calling in the answer
  • andig
    andig over 8 years
    Must the superclass constructor part be called from the initializatoin (cpp file) or is it sufficient to declare it in the .h file?
  • Pavel Kucherbaev
    Pavel Kucherbaev over 8 years
    @andig: the call is wherever the constructor is /defined/
  • underscore_d
    underscore_d over 8 years
    This is just because that particular declaration creates an implicit Base(), which has the same body as Base(int) but plus an implicit initialiser for : _a{1}. It's Base() that always gets called if no specific base constructor is chained in the init-list. And, as mentioned elsewhere, C++11's delegating constructors and brace-or-equal initialisation make default arguments rather less necessary (when they were already code-smell-esque in a lot of examples).
  • peterk
    peterk over 5 years
    I might say the function body "goes in" the try block - this way any body following the initializers will will have it's exceptions caught as well.
  • Kuba hasn't forgotten Monica
    Kuba hasn't forgotten Monica over 3 years
    I do take slight offense that such nice example suggests the use std::endl everywhere. People see that and put it in loops and wonder why writing a bunch of lines to a text file is 5x-20x slower "in C++" than using fprintf. TL;DR: Use "\n" (added to an existing string literal if there's one), and use std::endl only when you need to flush the buffers to the file (e.g. for debugging if the code crashes and you want to see its last words). I think that std::endl was a design mistake of convenience: a cool "gadget" that does way more than the name suggests.
  • Kuba hasn't forgotten Monica
    Kuba hasn't forgotten Monica over 3 years
    "a parent class's constructor can be called explicitly from the derived member's constructor's body" that's patently false for the instance in question, unless you're referring to placement new, and even then it's wrong because you'd have to destruct the instance first. E.g. MyClass::MyClass() { new (this) BaseClass; /* UB, totally wrong */ } - this is the C++ syntax for explicitly invoking a constructor. That's how a "constructor call" looks. So the fact that this absurdly wrong answer is upvoted is a total mystery to me.
  • Kuba hasn't forgotten Monica
    Kuba hasn't forgotten Monica over 3 years
    I consider most answers to that question you link to to be junk, or sidestepping the issue. I wrote the answer that was missing that whole time it seems. I'm not surprised that this anyone could be confused tried to understand anything from your link... I'd have been confused as well. It's easy stuff but people write about it as if it was some magic. Blind leading the blind. Explicit constructor "call" is done with placement new syntax! MyClass() is not any sort of a "call"! It has the same meaning as e.g. int(), and it creates a value!