Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
#include <iostream>
#include <conio.h>

using namespace std;

class Base
{
      int a;
public:
      Base(const Base & b)
      {
                 cout<<"inside constructor"<<endl;
      }   

};

int main()
{
   Base b1;
   getch();
   return 0;
}

This gives an error. no matching function for call to `Base::Base()' Why?

share|improve this question
That won't fix your problem, but ideally, your copy constructor should take a const reference. – Etienne de Martel Nov 26 '10 at 14:44
you are right. I fixed it – Bruce Nov 26 '10 at 14:46

2 Answers

up vote 7 down vote accepted

The default constructor is only generated if you don't declare any constructors. It's assumed that if you're defining a constructor of your own, then you can also decide whether you want a no-args constructor, and if so define that too.

In C++0x, there will be an explicit syntax for saying you want the default constructor:

struct Foo {
    Foo() = default;
    ... other constructors ...
};
share|improve this answer

It does not hide the default constructor, but declaring any constructor in your class inhibits the compiler from generating a default constructor, where any includes the copy constructor.

The rationale for inhibiting the generation of the default constructor if any other constructor is present is based on the assumption that if you need special initialization in one case, the implicitly generated default constructor is most probably inappropriate.

share|improve this answer

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.