Freigeben über


Compilerwarnung (Stufe 2) C4308

Negative Ganzzahlkonstante in vorzeichenlosen Typ konvertiert

Eine negative Ganzzahlkonstante wurde durch einen Ausdruck in einen vorzeichenlosen Typ konvertiert. Das Ergebnis des Ausdrucks ist möglicherweise ohne Bedeutung.

Beispiel

// C4308.cpp
// compile with: /W2
unsigned int u = (-5 + 3U);   // C4308

int main()
{
}