numeric_limits::is_signed
Verifica se un tipo è una rappresentazione con segno.
static const bool is_signed = false;
Valore restituito
true se il tipo presenta una rappresentazione con segno; se non false.
Note
Il membro memorizza true per un tipo che abbia una rappresentazione con segno, ovvero le maiuscole per tutti i tipi predefiniti signed integer e a virgola mobile.
Esempio
// numeric_limits_is_signaled.cpp
// compile with: /EHsc
#include <iostream>
#include <limits>
using namespace std;
int main( )
{
cout << "Whether float objects have a signed representation: "
<< numeric_limits<float>::is_signed
<< endl;
cout << "Whether double objects have a signed representation: "
<< numeric_limits<double>::is_signed
<< endl;
cout << "Whether signed char objects have a signed representation: "
<< numeric_limits<signed char>::is_signed
<< endl;
cout << "Whether unsigned char objects have a signed representation: "
<< numeric_limits<unsigned char>::is_signed
<< endl;
}
Requisiti
limiti <diIntestazione: >
Spazio dei nomi: std