is_floating_point Class
Sınama türü kayan nokta.
template<class Ty>
struct is_floating_point;
Parametreler
- Ty
Sorgu türü.
Notlar
Bir örneğini türü yüklemi true ise tutan türü Ty kayan olduğu işaret türü veya bir cv-qualified kayan nokta şeklinde yazın, aksi takdirde false tutan.
Bir kayan nokta türü biridir float, double, veya long double.
Örnek
// 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);
}
Gereksinimler
Başlık: <type_traits>
Namespace: std