Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to compile 2 classes in C++ with the following command:

g++ Cat.cpp Cat_main.cpp -o Cat

But I receive the following error:

Cat_main.cpp:10:10: error: variable ‘Cat Joey’ has initializer but incomplete type

Could someone explain to me what this means? What my files basically do is create a class (Cat.cpp) and create an instance (Cat_main.cpp). Here is my source code:

Cat.cpp:

#include <iostream>
#include <string>

class Cat;

using namespace std;

int main()
{
    Cat Joey("Joey");
    Joey.Meow();

    return 0;
}

Cat_main.cpp:

#include <iostream>
#include <string>

using namespace std;

class Cat
{
    public:
        Cat(string str);
    // Variables
        string name;
    // Functions
        void Meow();
};

Cat::Cat(string str)
{
    this->name = str;
}

void Cat::Meow()
{
    cout << "Meow!" << endl;
    return;
}
share|improve this question
You cannot declare objects for the classes whose definition are not yet visible. – iammilind Mar 19 '12 at 13:23
How would I make it visible? – Ken Mar 19 '12 at 13:24
2  
@Ken: You have to include the header file. – 0A0D Mar 19 '12 at 13:39

3 Answers

up vote 7 down vote accepted

You use a forward declaration when you need a complete type.

You must have a full definition of the class in order to use it.

The usual way to go about this is:

1) create a file Cat_main.h

2) move

#include <string>

class Cat
{
    public:
        Cat(std::string str);
    // Variables
        std::string name;
    // Functions
        void Meow();
};

to this file. Note that inside the header I removed using namespace std; and qualified string with std::string.

3) include this file int Cat_main.cpp and Cat.cpp:

#include "Cat_main.h"
share|improve this answer
So I can't throw my class definition into a different file? – Ken Mar 19 '12 at 13:25
@Ken no, that's not what I said. Read the answer again. – Luchian Grigore Mar 19 '12 at 13:27
Would I define the functions for the class in the header file too? – Ken Mar 19 '12 at 13:29
@Ken no necessarily, you can leave the method definitions in the cpp file. – Luchian Grigore Mar 19 '12 at 13:30
2  
@Ken it's simple but it makes a big difference. You should read an introductory book to C++ where these concepts are explained in detail, there's much more to it than this. – Luchian Grigore Mar 19 '12 at 13:36
show 2 more comments

You cannot define a variable of an incomplete type. You need to bring the whole definition of Cat into scope before you can create the local variable in main. I recommend that you move the definition of the type Cat to a header and include it from the translation unit that has main.

share|improve this answer
So I have to put my Cat class in the file with main? – Ken Mar 19 '12 at 13:26
3  
@Ken: no, you have to read an introduction book about C++ where the concept of headers and sources files will be explained. – Matthieu M. Mar 19 '12 at 13:32
@Ken: Create a header file with the definition of the class (and the appropriate guards), then include it both from cat.cpp and cat_main.cpp. – David Rodríguez - dribeas Mar 19 '12 at 13:36

It's not related to Ken's case directly, but such an error also can occur if you copied .h file and forgot to change #ifndef directive. In this case the compiler will just skip definition of the class thinking that it's a duplication.

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.