Thread overview
Forward reference in struct
Oct 08, 2007
Simen Haugen
Oct 08, 2007
Frits van Bommel
Oct 08, 2007
Simen Haugen
Oct 08, 2007
Regan Heath
October 08, 2007
I've hit a problem with forward referencing. Is it possible to manually add a forward reference, or isn't what I'm trying to do here allowed?

struct A {
 B b;
}

struct B {
 union {
  int i;
  A a;
 }
}


t.d(5): struct test.A unable to resolve forward reference in definition
t.d(10): anonymous union unable to resolve forward reference in definition
t.d(9): struct test.B unable to resolve forward reference in definition


October 08, 2007
Simen Haugen wrote:
> I've hit a problem with forward referencing. Is it possible to manually add a forward reference, or isn't what I'm trying to do here allowed?
> 
> struct A {
>  B b;
> }
> 
> struct B {
>  union {
>   int i;
>   A a;
>  }
> }
> 
> 
> t.d(5): struct test.A unable to resolve forward reference in definition
> t.d(10): anonymous union unable to resolve forward reference in definition
> t.d(9): struct test.B unable to resolve forward reference in definition 

Let's disregard the int. You essentially have this:
-----
struct A {
    B b;
}
struct B {
    A a;
}
-----
Now ask yourself this question: How big is A?
Obviously, since it's a struct with 1 member, it's equal to the size of B. But how big is B? By the same reasoning, it's as big as A.
You have an infinite "member recursion", which isn't allowed.

To fix this, you may want to change A.b and/or B.a to a pointer, or change A and/or B from a struct to a class (since classes are always stored by reference, which is essentially an implicit pointer).
October 08, 2007
Simen Haugen wrote:
> I've hit a problem with forward referencing. Is it possible to manually add a forward reference, or isn't what I'm trying to do here allowed?
> 
> struct A {
>  B b;
> }
> 
> struct B {
>  union {
>   int i;
>   A a;
>  }
> }
> 
> 
> t.d(5): struct test.A unable to resolve forward reference in definition
> t.d(10): anonymous union unable to resolve forward reference in definition
> t.d(9): struct test.B unable to resolve forward reference in definition 

This is not allowed because it's impossible to resolve, I believe.

At the point where you declare A the compiler wants to calculate the size of the structure, it can/will delay this till it finds a definition for B, but when it finds B it also needs to calculate the size of B,
but to calculate the size of B it needs to know the size of A,
but to calculate the size of A it needs to know the size of B,
but to calculate the size of B it needs to know the size of A,
but to calculate the size of A it needs to know the size of B,
...

Try:

> struct A {
>  B* b;
> }

instead.  I don't have DMD here so I can't test it but this should be possible as pointers have a fixed/known size.

Regan
October 08, 2007
"Frits van Bommel" <fvbommel@REMwOVExCAPSs.nl> wrote in message news:fed9j3$udv$1@digitalmars.com...
> Let's disregard the int. You essentially have this:
> -----
> struct A {
>     B b;
> }
> struct B {
>     A a;
> }
> -----
> Now ask yourself this question: How big is A?
> Obviously, since it's a struct with 1 member, it's equal to the size of B.
> But how big is B? By the same reasoning, it's as big as A.
> You have an infinite "member recursion", which isn't allowed.
>
> To fix this, you may want to change A.b and/or B.a to a pointer, or change A and/or B from a struct to a class (since classes are always stored by reference, which is essentially an implicit pointer).

Of course... I changed one to use pointers instead and it fixed the problem. Thanks to both Frits and Regan.