473,418 Members | 2,386 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,418 software developers and data experts.

What is "incomplete type?" (compiler error)

g++ compiler error question.

I have a container C whose constructor takes a class B that is inherited
from an abstract class A. So I have the line of code:

B binstance;
C cinstance(binstance);
The compiler gives the error,

error: variable `C cinstance' has initializer but incomplete type

I am trying to figure out what this means. What's an incomplete type?
I have all the methods that were abstract in A explicitly in B. I have
done this before with other classes inherited from the same abstract
class A and had no problems. Never seen this error before. What the
heck is going on? Any information will be greatly appreciated. I am
stuck. Thanks.

-- Lou Pecora (my views are my own) REMOVE THIS to email me.
Jul 23 '05 #1
5 33406

"Lou Pecora" <pe**********@THISanvil.nrl.navy.mil> wrote in message
news:pe********************************@ra.nrl.nav y.mil...
g++ compiler error question.

I have a container C whose constructor takes a class B that is inherited
from an abstract class A. So I have the line of code:

B binstance;
C cinstance(binstance);
The compiler gives the error,

error: variable `C cinstance' has initializer but incomplete type

I am trying to figure out what this means. What's an incomplete type?
I have all the methods that were abstract in A explicitly in B. I have
done this before with other classes inherited from the same abstract
class A and had no problems. Never seen this error before. What the
heck is going on? Any information will be greatly appreciated. I am
stuck. Thanks.


An incomplete type error occurs when you try to use a class (or struct) that
has not yet been fully defined, inside another class. Without seeing your
class definitions for B and C, it's impossible to tell what you're missing,
exactly. But...perhaps you're trying to pass the B object by value to the C
constructor, instead of by const reference as it more often done?

-Howard

Jul 23 '05 #2
In article <rc********************@bgtnsc04-news.ops.worldnet.att.net>,
"Howard" <al*****@hotmail.com> wrote:
"Lou Pecora" <pe**********@THISanvil.nrl.navy.mil> wrote in message
news:pe********************************@ra.nrl.nav y.mil...
g++ compiler error question.

I have a container C whose constructor takes a class B that is inherited
from an abstract class A. So I have the line of code:

B binstance;
C cinstance(binstance);
The compiler gives the error,

error: variable `C cinstance' has initializer but incomplete type

I am trying to figure out what this means. What's an incomplete type?
I have all the methods that were abstract in A explicitly in B. I have
done this before with other classes inherited from the same abstract
class A and had no problems. Never seen this error before. What the
heck is going on? Any information will be greatly appreciated. I am
stuck. Thanks.


An incomplete type error occurs when you try to use a class (or struct) that
has not yet been fully defined, inside another class. Without seeing your
class definitions for B and C, it's impossible to tell what you're missing,
exactly. But...perhaps you're trying to pass the B object by value to the C
constructor, instead of by const reference as it more often done?

-Howard


Thanks, Howard, for the reply.

I understand what you are saying. I pass B as a reference to A. That
is the C constructor is,

C::C(A &Ainst) { ... }

I have done this with this C class before, but I have written a new B
class inheriting from the same A I used before. But the compiler chokes
right where I try to declare a variable of type C with a B instance
passed to it in the declaration, i.e. C Cinst(Binst), and I am looking
for any clue why. I can see none, but there must be something undefined
for the compiler. I will go back and look, again. Thanks.

-- Lou Pecora (my views are my own) REMOVE THIS to email me.
Jul 23 '05 #3
Well, Duh (dope-slap upside my head), I found the answer to "incomplete
type." It is basically what others have said: some code is undefined.
I thought the header for my container code was included in another
header, but it wasn't only the declaration

class C;

was in that header. So including the container header got rid of the
"incomplete type?" error.

Mea culpa. And thanks to all who answered.

-- Lou Pecora (my views are my own) REMOVE THIS to email me.
Jul 23 '05 #4
Lou Pecora wrote:

I have a container C whose constructor takes a class B that
is inherited from an abstract class A. So I have the line of code:

B binstance;
C cinstance(binstance);

The compiler gives the error,

error: variable `C cinstance' has initializer but incomplete type

I am trying to figure out what this means.


This means that C has been declared but not defined.
Here is a simpler example that gives the same error:

class C;

int main()
{
C c(1);
}

If you think C has been defined, then perhaps you have a
problem with #include dependencies.

Jul 23 '05 #5
In article <11*********************@g43g2000cwa.googlegroups. com>,
"Old Wolf" <ol*****@inspire.net.nz> wrote:
Lou Pecora wrote:

I have a container C whose constructor takes a class B that
is inherited from an abstract class A. So I have the line of code:

B binstance;
C cinstance(binstance);

The compiler gives the error,

error: variable `C cinstance' has initializer but incomplete type

I am trying to figure out what this means.


This means that C has been declared but not defined.
Here is a simpler example that gives the same error:

class C;

int main()
{
C c(1);
}

If you think C has been defined, then perhaps you have a
problem with #include dependencies.


Thanks. I finally realized I goofed and did not include the C header.
I thought it was included in another header, but only

class C;

was declared. Mea Cupla!

-- Lou Pecora (my views are my own) REMOVE THIS to email me.
Jul 23 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Mat DeLong | last post by:
Can someone explain this error to me? : main.cpp:9: instantiated from `void show(const LIST::List<T>&) ' main.cpp:23: instantiated from here list.cpp:58: error: dependent-name...
5
by: kj | last post by:
Hi. I'm trying to compile some software from source, and I'm getting an error I can't figure out. The error in question is key_events.h:38: field `id' has incomplete type and the lines...
2
by: Lenonardo | last post by:
Hi. I'm writing a VB.Net application to update multiple Excel Worksheets. I'm using late binding (i.e. all variables are objects + use createobject) I develop the application on an XP...
3
by: Ed L. | last post by:
On 7.4.6, is there any problem with defining one column of a view to be a string literal? For example ... $ psql -c "create view fooview as select 'bar' as footype" WARNING: column "footype"...
6
by: geoffrobinson | last post by:
Hi, I'm serializing an object using XmlSerializer. It is serializing, but we are getting errors upon deserialization. We use the following code to serialize: FileStream fs = new...
3
by: John Sasso | last post by:
In my Yacc .y file I defined: %union { int value; struct Symbol Sym; } The Symbol struct I defined in a header file I #included in the Prologue section of the .y file as:
3
by: IR | last post by:
Hi, I've been trying to do the following (which doesn't compile) : template<class T, class F = Example<T struct Example { F foo(); };
5
by: Charles Packer | last post by:
In the code example below, why does the reference to gdk_pixbuf_new_from_file in main compile okay, but in subr2 gives the error "dereferencing pointer to incomplete type"? A search through this...
5
by: tejesh | last post by:
I am trying to compile the following code int backend_sm_run(struct interface_data *ctx) { xsup_assert((ctx != NULL), "ctx != NULL", TRUE); xsup_assert((ctx->statemachine != NULL),...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.