numeric_limits::is_signed
Teste 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; se não false .
Comentários
O membro armazena verdadeiro para um tipo que tem uma representação assinado, que é caixas para todos os tipos predefinidos de ponto flutuante e o número inteiro com sinal.
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
Cabeçalho: <limits>
namespace: STD