Condividi tramite


Avviso del compilatore (livello 3) C4281

La ricorsione 'operator ->' si è verificata tramite il tipo 'type'

Il codice consente all'operatore di> chiamare se stesso.

L'esempio seguente genera l'errore C4281:

// C4281.cpp
// compile with: /W3 /WX
struct A;
struct B;
struct C;

struct A
{
   int z;
   B& operator->();
};

struct B
{
   C& operator->();
};

struct C
{
   A& operator->();
};

void f(A p)
{
   int i = p->z; // C4281
}