<type_traits>

类模板
<type_traits>

std::is_floating_point

template <class T> struct is_floating_point;
浮点数类型判断

Trait 类,用于判断 T 是否为浮点数类型。

它继承自 integral_constant,并根据T为浮点数类型

基本浮点数类型
float
double
long double

此类将所有基本浮点类型(以及它们的别名)视为浮点数类型,无论其 constvolatile 限定如何。

模板参数

T
一个类型。

成员类型

继承自 integral_constant
成员类型定义
value_typebool
类型true_type 或 false_type

成员常量

继承自 integral_constant
成员常量定义
truefalse

成员函数

继承自 integral_constant

示例

1
2
3
4
5
6
7
8
9
10
11
12
// is_floating_point example
#include <iostream>
#include <type_traits>

int main() {
  std::cout << std::boolalpha;
  std::cout << "is_floating_point:" << std::endl;
  std::cout << "int: " << std::is_floating_point<int>::value << std::endl;
  std::cout << "float: " << std::is_floating_point<float>::value << std::endl;
  std::cout << "const double: " << std::is_floating_point<const double>::value << std::endl;
  return 0;
}

输出
is_floating_point:
int: false
float: true
const double: true


另见