Condividi tramite


Operatore che si puntatore a funzione

I seguenti funzionamento di esempio in Visual C++ .NET 2003 come specificato nello standard:

// operator_that_is_pointer_to_function.cpp
// function style call on object will invoke user-defined conversion 
// if there is one. See secion 13.3.1.1.2 
typedef void(*ptf)();
void func()
{
}
struct S
{
   operator ptf()
   {
      return func;
   }
};

int main()
{
   S s;
   s();//operates as s.operator ptf()()
}

Vedere anche

Altre risorse

Conformità avanzata compilatore Visual C++ .NET 2003