vote up 2 vote down star

Hi,

Is there a way to define circular references without using pointers?

I need to have somthing like this:

struct A;
struct B {
    A a;
};

struct A {
    B b;
};

Thanks!

flag

50% accept rate
Note: It seems fishy to me to forward-declare A to be a class and later define it as a struct. – sbi Aug 25 at 17:34
The above cannot possibly compile - and doesn't under vs2008 - because A is not defined when struct B is being defined. (btw, yes your forward declarations: struct/class should match the definitions) – quamrana Aug 25 at 18:59

4 Answers

vote up 10 vote down check

You can use references instead

struct A;
struct B {
  A& a;
};

struct A {
  B b;
};

But no it's not possible to create a circular reference without some level of indirection. What your sample is doing is not even creating a circular reference, it's attempting to create a recursive definition. The result would be a structure of infinite size and hence not legal.

link|flag
How could this work? If I remember correctly, the address value of a reference can't be modified once set, so you can't define a circular reference. – John Millikin Aug 25 at 16:05
@John, truthfully I'm not sure. The OP though asked if it was possible to define one. This definition is legal and compiles (VS2008 SP1). – JaredPar Aug 25 at 16:06
1  
The constructor for B would take a reference to an A, and the constructor for A would initialize its B member with *this. – Mark Ransom Aug 25 at 16:11
You may do the following to use them: struct { B b; A a; } c = { { a }, { b } }; – Johannes Schaub - litb Aug 25 at 16:48
vote up 0 vote down

In C++, T o means "an object of type T, not a reference to some T (as, for example, with reference types in C# and Java). With the code from your question, type A would have a sub object of type B (named b), and that B in turn would have a sub object of type A (named a). Now, that a would in turn have another A inside (again called a), which then has another B, which...

No, this will not work.

What you probably want is that an A referres to a B, which in turn referres that A. This can be done using pointers:

struct A;
struct B {
    A* a;
    B(A*);
};

struct A {
    B* b;
    A(B* b_) : b(b_)  { if(b) b.a = this; }
};

B::B(A* a_) : : a(a_) { if(a) a.b = this; }

I don't think it can be done using references.

link|flag
vote up 5 vote down

How could this work? If I remember correctly, the address value of a reference can't be modified once set, so you can't define a circular reference.

It could work like the following (same as Jared's example plus constructors defined):

struct A;

struct B {
  A& m_a;
  B(A& a) : m_a(a) {}
};

struct A {
  B m_b;
  //construct B m_b member using a reference to self
  A() : m_b(*this) {}
  //construct B m_b member using a reference to other
  A(A& other) : m_b(other) {}
};
link|flag
vote up 12 vote down

No, there's not. Such structure would have infinite size.

You can use smart pointers (shared_ptr and weak_ptr) to avoid direct pointer manipulation, but that's about it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.