is_floating_point Class
如果型別浮點數的測試。
template<class Ty>
struct is_floating_point;
參數
- Ty
要查詢的類型。
備註
如果為 true,則保留型別述詞的執行個體的型別Ty是浮點點型別或cv-qualified浮點數的形式輸入,否則它會保留,則為 false。
A 浮點型別是其中一個float, double,或long double。
範例
// 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);
}
需求
標頭: <type_traits>
Namespace: 標準