is_floating_point, classe
Teste si le type est à virgule flottante.
template<class Ty>
struct is_floating_point;
Paramètres
- Ty
Le type à requêter.
Notes
Une instance de l'attribut de type contient la valeur true si le type Ty est un type à virgule flottante ou une forme cv-qualified d'un type à virgule flottante, sinon il contient FALSE.
Type à virgule flottante est un float, un double, ou un long double.
Exemple
// std_tr1__type_traits__is_floating_point.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
struct trivial
{
int val;
};
int main()
{
std::cout << "is_floating_point<trivial> == " << std::boolalpha
<< std::is_floating_point<trivial>::value << std::endl;
std::cout << "is_floating_point<int> == " << std::boolalpha
<< std::is_floating_point<int>::value << std::endl;
std::cout << "is_floating_point<float> == " << std::boolalpha
<< std::is_floating_point<float>::value << std::endl;
return (0);
}
Configuration requise
En-tête : <type_traits>
Espace de noms : std