Condividi tramite


Errore del compilatore C2090

funzione restituisce una matrice

Una funzione non può restituire una matrice. Restituisce invece un puntatore a una matrice.

L'esempio seguente genera l'errore C2090:

// C2090.cpp
int func1(void)[] {}   // C2090

Possibile soluzione:

// C2090b.cpp
// compile with: /c
int* func2(int * i) {
   return i;
}