numeric_limits::is_signed
Testa se um tipo tem uma representação assinado.
static const bool is_signed = false;
Valor de retorno
true se o tipo tem uma representação assinado; false caso contrário.
Comentários
O membro armazena true para um tipo que tem uma representação assinada, que é o caso para todos os tipos predefinidos de ponto flutuante e de inteiro assinado.
Exemplo
// 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;
}
Requisitos
limites <deCabeçalho: >
Namespace: std