<type_traits>

类模板
<type_traits>

std::underlying_type

template <class T> struct underlying_type;
枚举类型的底层类型
获取枚举类型的底层类型T.

底层类型被别名为成员类型underlying_type::type.

声明为enum class的 C++ 等效文件是int除非声明中指定了不同的类型。

请注意,此类仅使用另一种类型作为模型来获取类型,但它不会在这些类型之间转换值或对象。

模板参数

T
枚举类型(enum).

成员类型

成员类型定义
类型枚举类型的底层类型T.

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// underlying_type example
#include <iostream>
#include <type_traits>

enum class A {a,b,c};
enum B : short {x,y,z};

int main() {

  typedef std::underlying_type<A>::type A_under;   // int
  typedef std::underlying_type<B>::type B_under;   // short

  std::cout << std::boolalpha;
  std::cout << "typedefs of int:" << std::endl;

  std::cout << "A_under: " << std::is_same<int,A_under>::value << std::endl;
  std::cout << "B_under: " << std::is_same<int,B_under>::value << std::endl;

  return 0;
}

输出
typedefs of int:
A_under: true
B_under: false


另见