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!
|
|
Hi, Is there a way to define circular references without using pointers? I need to have somthing like this:
Thanks!
|
|||
|
|
You can use references instead
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. |
||||||||||
|
|
|
In C++, No, this will not work. What you probably want is that an
I don't think it can be done using references. |
||
|
|
|
|
It could work like the following (same as Jared's example plus constructors defined):
|
||
|
|
|
|
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. |
||
|
|
Ato be aclassand later define it as astruct. – sbi Aug 25 at 17:34