Sanırım temeldeki türü öğrenmek için std :: underlying_type ve ardından cast'ı kullanabilirsiniz:
#include <type_traits> //for std::underlying_type
typedef std::underlying_type<my_fields>::type utype;
utype a = static_cast<utype>(my_fields::field);
Bununla , temel türü üstlenmek zorunda değilsiniz veya enum class
benzerinin tanımında belirtmek zorunda değilsiniz enum class my_fields : int { .... }
.
Herhangi birini temeldeki integral türüne dönüştürebilecek genel bir dönüştürme işlevi bile yazabilirsiniz : enum class
template<typename E>
constexpr auto to_integral(E e) -> typename std::underlying_type<E>::type
{
return static_cast<typename std::underlying_type<E>::type>(e);
}
sonra kullan:
auto value = to_integral(my_fields::field);
auto redValue = to_integral(Color::Red);//where Color is an enum class!
Ve fonksiyon olarak bildirildiğinden constexpr
, onu sabit ifadenin gerekli olduğu yerlerde kullanabilirsiniz:
int a[to_integral(my_fields::field)]; //declaring an array
std::array<int, to_integral(my_fields::field)> b; //better!
enum
.