当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ std::underlying_type用法及代码示例


<type_traits>头文件中提供了C++ STL的std::underlying_type模板。 C++ STL的std::underlying_type模板用于获取枚举类型T的基础类型。

头文件:

#include<type_traits>

模板类别:

template <class T>
struct underlying_type;

用法:

std::underlying_type<class T>::value

参数:模板std::underlying_type接受单个参数T(Trait类)。



返回值:模板std::underlying_type返回枚举类型T的基础类型。

下面是在C++中演示std::underlying_type的程序:

程序:

// C++ program to illustrate 
// std::underlying_type 
#include <bits/stdc++.h> 
#include <type_traits> 
using namespace std; 
  
// ENUM Class GFG 
enum GFG {}; 
  
// Class gfg 
enum class gfg:int {}; 
  
// Driver Code 
int main() 
{ 
    bool GFG1 
        = is_same<unsigned, 
                  typename underlying_type<GFG>::type>::value; 
  
    bool gfg1 
        = is_same<int, 
                  typename underlying_type<gfg>::type>::value; 
  
    cout << "underlying type for 'GFG' is "
         << (GFG1 ? "unsigned" :"non-unsigned") 
         << endl; 
  
    cout << "underlying type for 'gfg' is "
         << (gfg1 ? "int" :"non-int") 
         << endl; 
  
    return 0; 
}
输出:
underlying type for 'GFG' is unsigned
underlying type for 'gfg' is int

参考: http://www.cplusplus.com/reference/type_traits/underlying_type/

相关用法


注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 std::underlying_type in C++ with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。