is_floating_point Class
Prüft, ob Typ float ist.
template<class Ty>
struct is_floating_point;
Parameter
- Ty
Der abzufragende Typ.
Hinweise
Eine Instanz des Typs prädikats behält True an, wenn der Typ Ty ein Gleitkommatyp oder ein cv-qualified Form eines Gleitkommatyps ist, andernfalls wird er false.
Ein Gleitkommatyp ist einer von float, doubleoder long double.
Beispiel
// 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);
}
Anforderungen
Header: <type_traits>
Namespace: std