共用方式為


is_floating_point 類別

測試,如果型別是浮點數。

template<class Ty>
    struct is_floating_point;

參數

  • Ty
    查詢的型別。

備註

這個型別述詞的執行個體之型別,則 Ty 是浮點數型別或浮點型別的 cv-qualified 格式,否則會保留為 false。

浮點型別為 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>

命名空間: std

請參閱

參考

<type_traits>

is_integral 類別

其他資源

<type_traits> 成員