Nota
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tidħol jew tibdel id-direttorji.
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tibdel id-direttorji.
cast truncates constant value
Remarks
A constant value is cast to a smaller type. The compiler performs the cast, which truncates data.
Example
The following example generates C4310:
// C4310.cpp
// compile with: /W4
int main()
{
long int a;
a = (char) 128; // C4310, use value 0-127 to resolve
}