Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As an c# developer I'm used to run through constructors:

class Test {
    public Test() {
        DoSomething();
    }

    public Test(int count) : this() {
        DoSomethingWithCount(count);
    }

    public Test(int count, string name) : this(count) {
        DoSomethingWithName(name);
    }
}

Is there a way to do this in c++ ?

I tried calling the Class name and using the 'this' keyword, but both fails.

share|improve this question

11 Answers

up vote 281 down vote accepted

Unfortunately there's no way to do this in C++ (it's possible in C++11 though - see update at the bottom).

two ways of simulating this:

1) You can combine two (or more) constructors via default parameters:

class Foo {
 public:
   Foo(char x, int y=0);  // combines two constructors (char) and (char, int)
   ...
 };

2) Use an init method to share common code

class Foo {
 public:
   Foo(char x);
   Foo(char x, int y);
   ...
 private:
   void init(char x, int y);
 };

 Foo::Foo(char x)
 {
   init(x, int(x) + 7);
   ...
 }

 Foo::Foo(char x, int y)
 {
   init(x, y);
   ...
 }

 void Foo::init(char x, int y)
 {
   ...
 }

see this link for reference.

Update: Google rates this question high, so I think it's necessary to update it with current information. C++11 has been finalized, and it has this same feature (called delegating constructors).

The syntax is slightly different from C#:

class Foo {
public: 
  Foo(char x, int y) {}
  Foo(int y) : Foo('a', y) {}
};
share|improve this answer
8  
Actually remarkably default parameters makes for a very clean way to do what we'd commonly accomplish calling this() in C# – bobobobo Feb 18 '10 at 22:53
30  
Thank you for updating with C++11 information! – Mike Apr 11 '12 at 21:31
9  
Thanks to whoever updated this with C++ 11 info. I feel like I should share points coming from this question! – JohnIdol May 31 '12 at 12:26

No, you can't call one constructor from another in C++03 (called a delegating constructor).

This changed in C++11 (aka C++0x), which added support for the following syntax:
(example taken from Wikipedia)

class SomeType
{
  int number;

public:
  SomeType(int newNumber) : number(newNumber) {}
  SomeType() : SomeType(42) {}
};
share|improve this answer

It is worth pointing out that you can call the constructor of a parent class in your constructor, e.g.:

class A{ .... };

class B: public A
{
 B() : A()
{
 ... do more stuff...
}
};

But, no, you can't call another constructor of the same class.

share|improve this answer

I believe you can call a ctor from a ctor. It will compile and run. I recently saw someone do this and it ran on windows and linux.

It just doesn't to what you want. The inner ctor will construct a temporary local object which gets deleted once the outer ctor returns. They would have to be different ctors as well or you would create a recursive call.

Ref: http://www.parashift.com/c++-faq-lite/ctors.html#faq-10.3

share|improve this answer

In c++11, a constructor can call another constructor overload.

class Foo  {
     int d;         
public:
    Foo  (int i) : d(i) {}
    Foo  () : Foo(42) {} //new to c++11
};

http://en.wikipedia.org/wiki/C%2B%2B11#Object_construction_improvement

Additionally, members can be initialized like this as well.

class Foo  {
     int d = 5;         
public:
    Foo  (int i) : d(i) {}
};

This should eliminate the need to create the initialization helper method. And it is still recommended not calling any virtual functions in the constructors or destructors to avoid using any members that might not be initialized.

share|improve this answer

In Visual C++ you can also use this notation inside constructor: this->Classname::Classname(parameters of another constructor). See an example below:

class Vertex
{
 private:
  int x, y;
 public:
  Vertex(int xCoo, int yCoo): x(xCoo), y(yCoo) {}
  Vertex()
  {
   this->Vertex::Vertex(-1, -1);
  }
};

I don't know whether it works somewhere else, I only tested it in Visual C++ 2003 and 2008. You may also call several constructors this way, I suppose, just like in Java and C#.

P.S.: Frankly, I was surprised that this was not mentioned earlier.

share|improve this answer
I tried this on g++ under Ubuntu (4.4.3). It didn't work: In constructor ‘Vertex::Vertex()’: error: invalid use of ‘class Vertex’. – Kevin Aug 10 '12 at 13:59
I tested it under Visual Studio 2003 .NET Architect edition - works fine. – izogfif Oct 31 '12 at 15:29
This method is very dangerous! It produce memory leak if members are not from a POD-Type. For example std::string. – Alexander Drichel Jun 11 at 13:59

No, in C++ you cannot call a constructor from a constructor. What you can do, as warren pointed out, is:

  • Overload the constructor, using different signatures
  • Use default values on arguments, to make a "simpler" version available

Note that in the first case, you cannot reduce code duplication by calling one constructor from another. You can of course have a separate, private/protected, method that does all the initialization, and let the constructor mainly deal with argument handling.

share|improve this answer

If you want to be evil, you can use the in-place "new" operator:

class Foo() {
    Foo() { /* default constructor deliciousness */ }
    Foo(Bar myParam) {
      new (this) Foo();
      /* bar your param all night long */
    } 
};

Seems to work for me.

share|improve this answer
2  
Its seems it is not something advised to do as you can read at the end of 10.3 parashift.com/c++-faq-lite/ctors.html#faq-10.3 – Stormenet Mar 24 '11 at 20:05
It seems to me the only downside of this is that it adds a little overhead; new(this) tests if this==NULL and skips the constructor if it does. – Deadcode Nov 12 '12 at 10:45

I always thought this is allowed:

Foo::Foo()
{
    // do what every Foo is needing
    ...
}

Foo::Foo(char x)
{
    *this = Foo();

    // do the special things for a Foo with char
    ...
}

What will be the problem here?

share|improve this answer
perfect and elegant! pretty good. – ademar111190 Sep 13 '12 at 20:20
1  
in this statment "*this = Foo()"; Foo() will create a new instance, and *this = Foo(), will call the operator=, which can be generated by default or user defined. The problem, I could imagine, first, you create a new instance inside of Foo:Foo(char x), and then you also make implicitly call of operator=. As a result, it could be very hard to debug in the end. Especially, memory management involved in member variable. – lightmanhk Nov 14 '12 at 19:49

Another option that has not been shown yet is to split your class into two, wrapping a lightweight interface class around your original class in order to achieve the effect you are looking for:

class Test_Base {
    public Test_Base() {
        DoSomething();
    }
};

class Test : public Test_Base {
    public Test() : Test_Base() {
    }

    public Test(int count) : Test_Base() {
        DoSomethingWithCount(count);
    }
};

This could get messy if you have many constructors that must call their "next level up" counterpart, but for a handful of constructors, it should be workable.

share|improve this answer

If I understand your question correctly, you're asking if you can call multiple constructors in C++?

If that's what you're looking for, then no - that is not possible.

You certainly can have multiple constructors, each with unique argument signatures, and then call the one you want when you instantiate a new object.

You can even have one constructor with defaulted arguments on the end.

But you may not have multiple constructors, and then call each of them separately.

share|improve this answer
He's asking if one constructor can call another one. Java and C# allow this. – Jonathan Nov 21 '08 at 9:50
1  
right - that's not possible in C++ – warren Nov 21 '08 at 11:30
1  
and the downvote is for ....? – warren Nov 5 '12 at 0:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.