Il codice di quello che ho scritto:Come implementare due strutture che possono accedere l'un l'altro?
struct A;
struct B;
struct A
{
int v;
int f(B b)
{
return b.v;
}
};
struct B
{
int v;
int f(A a)
{
return a.v;
}
};
Il messaggio di compilazione:
|In member function 'int A::f(B)':|
11|error: 'b' has incomplete type|
7|error: forward declaration of 'struct B'|
||=== Build finished: 2 errors, 0 warnings (0 minutes, 0 seconds) ===|
so, perché che il codice non è corretto, ma non so come implementare due le strutture che possono accedere l'un l'altro. C'è un modo elegante? Grazie in anticipo.
Ho re-taggato questo come C++, poiché non è C. – unwind