<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/
相關用法
- C/C++ fseek()用法及代碼示例
- C++ std::search_n用法及代碼示例
- C++ tellg()用法及代碼示例
- C++ wcstok()用法及代碼示例
- C++ wcsstr()用法及代碼示例
- C++ wcsncpy()用法及代碼示例
- C++ forward_list::cend()用法及代碼示例
- C++ Private和Protected的區別用法及代碼示例
- C++ std::is_destructible用法及代碼示例
- C++ std::is_nothrow_move_constructible用法及代碼示例
- C++ std::is_trivially_default_constructible用法及代碼示例
- C++ std::numeric_limits::digits用法及代碼示例
- C++ std::remove_cv用法及代碼示例
注:本文由純淨天空篩選整理自bansal_rtk_大神的英文原創作品 std::underlying_type in C++ with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。