I have code in my header file that looks like:
typedef struct _bn bnode;
I can do
bnode b;
just fine, but
b[i], where i is an int gives me the following error:
invalid use of undefined type ‘struct _bn’
Any ideas?
|
|
I have code in my header file that looks like:
I can do
just fine, but
invalid use of undefined type ‘struct _bn’ Any ideas?
|
|||
|
|
As far as an API/library goes, normally if you're going to need an opaque structure, you don't allow the user of the API to declare things like arrays or static instances because of this. Not knowing anything about the structure is the name of the game so you're probably going to have to define some functions to manipulate them. Most C libraries that declare opaque structures often has accessor and modification functions. One example is from Lua (obviously a Lua state is an single use structure but it's the idea):
In this case, if you decided you needed multiple Lua states, you would do something like the following:
I think the general rule-of-thumb is that if you're working with opaque structures, you're going to be working through pointers only, which is pretty much the only way to go about it anyway. |
||
|
|
|
|
Sounds like you either want an opaque pointer/PIMPL implementation, or you should include the appropriate header file. Structs in C++ are almost identical to classes, so the same techniques apply. |
||
|
|
|
As stated, Also, how do you expect the compiler to figure out the size of that structure? When you do something like What is your opacity intended to do for you? Maybe if you explain further what you are trying to accomplish you will get a more revealing answer... |
||||||||
|
|
|
You have to at least know the size of bnode to be able to make an array of them. You could do, in your opaque definition of bnode:
Then you can do:
and it will work. |
|||
|
|
|
|
You can't define an array of opaque structs. If you do you get an error such as:
(the specific error text will vary; the one above is from gcc 4.4.1). But what you can do is create an array of pointers to opaque structs. This is doable as the details of the struct do not affect the size of the pointer.
|
||
|
bnode b;' because the compiler does not know how much space to allocate. You would be able to write 'bnode *bp;', though. – Jonathan Leffler Oct 9 at 22:56