Partager via


numeric_limits::has_infinity

Teste si un type a une représentation pour l'infini positif.

static const bool has_infinity = false;

Valeur de retour

true si le type a une représentation pour l'infini positif ; false cas contraire.

Notes

Le membre retourne true si is_iec559 est true.

Exemple

// numeric_limits_has_infinity.cpp
// compile with: /EHsc
#include <iostream>
#include <limits>

using namespace std;

int main( )
{
   cout << "Whether float objects have infinity: "
        << numeric_limits<float>::has_infinity
        << endl;
   cout << "Whether double objects have infinity: "
        << numeric_limits<double>::has_infinity
        << endl;
   cout << "Whether long int objects have infinity: " 
        << numeric_limits<long int>::has_infinity
        << endl;
}
  

Configuration requise

en-tête : <limits>

l'espace de noms : DST

Voir aussi

Référence

strstreambuf Class