Avviso del compilatore (livello 1) C4965

casella implicita di integer 0; usare nullptr o cast esplicito

Visual C++ include il boxing implicito dei tipi valore. Un'istruzione che ha generato un'assegnazione Null usando Estensioni gestite per C++ ora diventa un'assegnazione a un int boxed.

Per ulteriori informazioni, vedi Boxing.

Esempio

L'esempio seguente genera l'errore C4965.

// C4965.cpp
// compile with: /clr /W1
int main() {
   System::Object ^o = 0;   // C4965

   // the previous line is the same as the following line
   // using Managed Extensions for C++
   // System::Object *o = __box(0);

   // OK
   System::Object ^o2 = nullptr;
   System::Object ^o3 = safe_cast<System::Object^>(0);
}